:root {
  --gold: #d3af37;
  --brown: #241a14;
  --taupe: #98817b;
  --black: #000;
  --white: #fff;
  --wa: #25d366;
  --wa-hover: #036628;
  --font-display: "Merienda", sans-serif;
  --font-script: "Dancing Script", sans-serif;
  --container: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
  background: var(--brown);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 40;
  background: #111;
  color: #fff;
  padding: 8px 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wrap,
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 10px;
}

/* Header */
.topbar {
  background: var(--black);
  padding: 10px 0;
}

.topbar-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s;
}

.topbar-list svg {
  width: 25px;
  height: 25px;
  fill: var(--gold);
  flex-shrink: 0;
  transition: fill 0.3s;
}

.header-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--brown);
  padding: 10px 20px;
}

.header-logo {
  width: 25%;
  flex-shrink: 0;
}

.header-logo a {
  display: block;
}

.header-logo img {
  width: 80%;
  max-width: 335px;
  height: auto;
}

.header-nav {
  width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  display: inline-block;
  padding: 12px 7px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  margin: 0 auto;
  background: none;
  border: 0;
  color: var(--white);
  padding: 8px;
  cursor: pointer;
}

.nav-toggle svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  display: block;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="false"] .icon-close,
.nav-toggle:not([aria-expanded="true"]) .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-panel {
  display: none;
  width: 100%;
  background: var(--brown);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 8px 0 16px;
}

.mobile-panel a {
  display: block;
  padding: 12px 20px;
  color: var(--white);
  font-family: var(--font-script);
  font-weight: 500;
  text-align: center;
}

.mobile-panel a:hover,
.mobile-panel a:focus-visible {
  background: var(--brown);
  color: var(--gold);
}

/* Hero / slides */
.slide {
  position: relative;
  overflow: hidden;
  color: var(--gold);
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  animation: kenBurns 20s linear forwards;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.slide-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 100%;
  padding: 50px;
}

.slide-contents {
  text-align: center;
  text-shadow: 0 0 10px rgba(10, 10, 10, 0.3);
  animation: fadeInUp 1.25s ease both;
}

.slide-heading {
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--gold);
  margin-bottom: 30px;
}

.slide-desc {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--gold);
  margin-bottom: 30px;
}

.hero {
  height: 500px;
}

.hero .slide-inner {
  justify-content: flex-start;
  padding: 0 5%;
  text-align: center;
}

.hero .slide-contents {
  max-width: 34%;
}

.hero .slide-heading {
  font-size: 28px;
  font-weight: 600;
}

.hero .slide-desc {
  font-size: 20px;
  margin-bottom: 0;
  white-space: pre-line;
}

.banner-tercos {
  height: 452px;
}

.banner-tercos .slide-inner {
  justify-content: flex-end;
}

.banner-tercos .slide-contents,
.banner-casamentos .slide-contents {
  max-width: 45%;
}

.banner-casamentos {
  height: 400px;
}

.banner-casamentos .slide-inner {
  justify-content: flex-start;
}

.banner-casamentos .slide-contents {
  max-width: 66%;
}

.slide-btn {
  display: inline-block;
  background: #000;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-family: var(--font-script);
  font-size: 21px;
  font-weight: 500;
  padding: 10px 22px;
  line-height: 1.2;
}

.ornament {
  background: var(--brown);
  display: flex;
  justify-content: center;
  padding-top: 3%;
}

.ornament--tight {
  padding-top: 0;
}

.ornament-col {
  width: 33.3333%;
  max-width: 380px;
  text-align: center;
}

.ornament img {
  width: 60%;
  max-width: 228px;
  margin-inline: auto;
}

/* About */
.about {
  background: var(--brown);
  padding: 3% 0;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.about-photo {
  width: 33.3333%;
}

.about-photo img {
  width: 100%;
}

.about-copy {
  width: 66.6666%;
  padding-left: 30px;
}

.about-kicker {
  padding-top: 26px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 20px;
}

.about-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 20px;
}

.about-text {
  font-family: var(--font-script);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
}

.about-text p {
  margin: 0 0 1em;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.btn-gold {
  display: inline-block;
  margin-top: 20px;
  background: var(--brown);
  color: var(--gold);
  fill: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--font-script);
  font-size: 23px;
  font-weight: 500;
  padding: 12px 24px;
  line-height: 1;
  min-height: 40px;
}

/* Integrantes */
.members-intro {
  background: var(--brown);
  padding: 1% 0 2%;
  text-align: center;
}

.members-intro h2 {
  margin: 3% 0 20px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--gold);
}

.members-intro h3 {
  margin: 0 0 3%;
  font-size: 21px;
  font-weight: 600;
  color: var(--gold);
}

.members-row {
  display: flex;
  flex-wrap: nowrap;
  background: var(--brown);
  padding: 50px 10px 10px;
}

.members-row--second {
  padding: 4% 1% 5%;
}

.member {
  width: 50%;
  flex: 1 1 0;
  min-width: 0;
  padding: 10px;
}

.member-card {
  background: var(--taupe);
  padding: 0 25px 25px;
  text-align: center;
}

.member-card img {
  width: 40%;
  margin: -50px auto 0;
}

.member-card h4 {
  margin: 12px 0 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.member-card p {
  margin: 0;
  font-family: var(--font-script);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
}

/* Videos / tenor */
.section-head {
  background: var(--brown);
  padding: 50px 30px 30px;
  text-align: center;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--gold);
}

.section-head h4 {
  margin-top: 20px;
  font-size: 21px;
  font-weight: 600;
  color: var(--gold);
}

.videos-grid {
  display: flex;
  gap: 30px;
  background: var(--brown);
  padding: 0 50px 50px;
}

.video-col {
  width: 50%;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #000;
  overflow: hidden;
}

.video-frame video,
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.tenor-head {
  padding: 50px 50px 15px;
}

.tenor-grid {
  display: flex;
  background: var(--brown);
  padding: 0 30px 50px;
}

.tenor-photo,
.tenor-video {
  width: 50%;
  padding: 10px;
}

.tenor-photo img {
  max-width: 90%;
  margin-inline: auto;
}

.tenor-video .video-frame {
  aspect-ratio: 1 / 1;
}

/* Footer */
.site-footer {
  background: var(--brown);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 10px;
}

.footer-col {
  width: 33%;
  padding: 10px;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  max-width: 67%;
  margin-inline: auto;
}

.footer-tagline {
  font-family: var(--font-script);
  font-size: 16px;
  font-weight: 400;
  color: var(--gold);
}

.footer-tagline strong {
  font-weight: 700;
}

.footer-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 16px;
  margin-bottom: 4px;
  transition: color 0.3s;
}

.footer-contacts svg {
  width: 25px;
  height: 25px;
  fill: var(--gold);
  flex-shrink: 0;
}

.copybar {
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  background: var(--brown);
  text-align: center;
}

.copybar p {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.45px;
  color: var(--gold);
}

.copybar a:hover,
.copybar a:focus-visible {
  color: var(--gold);
}

.wa-float {
  position: fixed;
  right: 25px;
  bottom: 10px;
  z-index: 9999;
}

.wa-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  padding: 10px;
}

.wa-float-btn svg {
  width: 45px;
  height: 45px;
  fill: #fff;
}

.wa-float-btn:hover,
.wa-float-btn:focus-visible {
  background: var(--wa-hover);
}

/* Motion */
[data-animate] {
  opacity: 0;
}

[data-animate].is-in {
  opacity: 1;
  transition: opacity 1.25s ease;
}

[data-animate="fade-slow"].is-in {
  transition-duration: 2s;
}

[data-animate="slide-right"] {
  transform: translate3d(80px, 0, 0);
}

[data-animate="slide-right"].is-in {
  transform: none;
  transition: opacity 1.25s ease, transform 1.25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInRight {
  from {
    transform: translate3d(80px, 0, 0);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.3);
  }
}

@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .copybar p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .topbar-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .header-logo,
  .header-nav {
    width: 100%;
  }

  .header-logo {
    text-align: center;
  }

  .header-logo img {
    width: 60%;
    margin-inline: auto;
  }

  .hero {
    height: 272px;
  }

  .hero .slide-contents,
  .banner-tercos .slide-contents,
  .banner-casamentos .slide-contents {
    max-width: 100%;
  }

  .hero .slide-heading {
    font-size: 22px;
  }

  .ornament-col {
    width: 100%;
    max-width: none;
  }

  .ornament img {
    max-width: 228px;
  }

  .about-photo,
  .about-copy {
    width: 100%;
  }

  .about-copy {
    padding: 0 15px 30px 30px;
  }

  .about-kicker {
    font-size: 20px;
    padding-top: 16px;
  }

  .about-title {
    font-size: 25px;
  }

  .members-intro h2,
  .section-head h2,
  .tenor-head h2 {
    font-size: 25px;
  }

  .members-intro h3,
  .section-head h4 {
    font-size: 20px;
  }

  .members-row,
  .members-row--second {
    flex-direction: column;
    flex-wrap: wrap;
    padding-inline: 10px;
  }

  .member {
    width: 100%;
    margin-bottom: 50px;
  }

  .videos-grid,
  .tenor-grid {
    flex-direction: column;
    padding-inline: 20px;
  }

  .video-col,
  .tenor-photo,
  .tenor-video {
    width: 100%;
  }

  .banner-tercos {
    height: 100vh;
  }

  .footer-col {
    width: 100%;
    text-align: left;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-contacts a {
    justify-content: flex-start;
  }

  .members-row,
  .members-row--second {
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px 10px 10px;
  }

  .copybar {
    padding: 5px;
  }
}

@media (max-width: 450px) {
  .slide-contents {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
  }
}
