:root {
  --bg: #f4efe5;
  --surface: #fffdf8;
  --surface-alt: #efe6d6;
  --ink: #171f2b;
  --muted: #5f6875;
  --navy: #0f1c38;
  --navy-soft: #16284d;
  --gold: #dca24e;
  --gold-strong: #b97c2d;
  --line: rgba(18, 29, 53, 0.16);
  --white: #ffffff;
  --shadow: rgba(7, 12, 24, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 14% 10%, #fbf8f1 0%, #f4efe5 38%, #eee3d1 100%);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  position: relative;
  z-index: 1;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: 0.24;
  z-index: 0;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 17, 33, 0.84);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(3, 7, 16, 0.35);
}

.site-header__bar {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  gap: 24px;
  background: rgba(11, 20, 39, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 10px 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 78px;
  border-radius: 8px;
}

.brand span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.header-cta {
  background: var(--gold);
  color: #1a2030;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: 78vh;
  padding: 86px 0 68px;
  margin-top: -92px;
  background: url("assets/hero-family.jpg") center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(7, 15, 33, 0.92), rgba(15, 27, 52, 0.78)),
    radial-gradient(circle at 82% 24%, rgba(219, 161, 78, 0.18), transparent 34%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: block;
}

.hero__center {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.kicker--dark {
  color: var(--gold-strong);
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5.1vw, 60px);
  line-height: 1.08;
  max-width: 12.6ch;
}

.hero__headline {
  margin: 0 auto;
  max-width: 14ch;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-wrap: balance;
  text-align: center;
}

.hero__description {
  margin: 18px auto 0;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
  text-wrap: balance;
}

.hero__copy > p {
  margin: 18px 0 0;
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.88);
}

.hero__chips {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__chips li {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.btn--solid {
  background: var(--gold);
  color: #1a2030;
}

.btn--solid:hover,
.btn--solid:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.hero__video {
  background: rgba(10, 18, 37, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 36px rgba(5, 10, 20, 0.34);
  width: 100%;
}

.hero__video--center {
  width: min(100%, 760px);
  margin: 20px auto 0;
}

.video-embed {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #050811;
}

.video-embed::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed--hero::before {
  padding-top: 57%;
}

.hero__note {
  margin: 12px 0 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.trust-strip {
  position: relative;
  z-index: 1;
  margin-top: -36px;
  padding-bottom: 12px;
}

.trust-strip__grid {
  background: rgba(13, 24, 46, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(8, 13, 24, 0.28);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 22px;
}

.trust-strip article {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  padding: 4px 14px;
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip__value {
  margin: 0;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1;
}

.trust-strip__label {
  margin: 8px 0 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.section {
  padding: 84px 0;
}

.section--light {
  background: var(--surface);
}

.section--soft {
  background: var(--surface-alt);
}

.section--deep {
  color: var(--white);
  background: linear-gradient(135deg, #0d1a35 0%, #172a54 58%, #10213f 100%);
}

.section--cta {
  color: var(--white);
  background:
    linear-gradient(130deg, rgba(10, 18, 36, 0.94), rgba(12, 25, 48, 0.9)),
    url("assets/imagem-final.jpg") center / cover no-repeat;
}

.section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.15;
}

.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__head--light h2 {
  color: var(--white);
}

.cards {
  display: grid;
  gap: 18px;
}

.cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(9, 15, 27, 0.08);
}

.card img {
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card h3 {
  margin: 16px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.cards--quote {
  margin-bottom: 24px;
}

.card--quote {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.17);
  box-shadow: none;
}

.card--quote p {
  color: rgba(255, 255, 255, 0.9);
}

.card--quote span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
}

.location__info h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(31px, 3vw, 42px);
  line-height: 1.14;
}

.location__info p {
  color: var(--muted);
  margin: 18px 0 26px;
}

.location__map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(9, 14, 27, 0.12);
}

.location__map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.faq {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  background: rgba(8, 15, 29, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 18px 30px rgba(5, 10, 18, 0.3);
}

.cta-panel h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(31px, 3.5vw, 46px);
  line-height: 1.12;
  max-width: 15ch;
}

.cta-panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel__actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.cta-panel .btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
}

.footer {
  position: relative;
  z-index: 1;
  background: #0b152b;
  color: rgba(255, 255, 255, 0.82);
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
}

.footer img {
  width: 106px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.footer p {
  margin: 0;
}

.footer a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.25);
  z-index: 25;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.whatsapp-float--hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header__bar {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
  }

  .brand {
    justify-content: center;
  }

  .brand span {
    text-align: center;
  }

  .hero {
    margin-top: -160px;
    padding-top: 170px;
  }

  .hero h1,
  .hero__headline {
    margin-left: auto;
    margin-right: auto;
    max-width: 14ch;
  }

  .cards--three,
  .video-grid,
  .location,
  .cta-panel,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .location__map iframe {
    height: 360px;
  }
}

@media (max-width: 780px) {
  .site-header {
    padding-top: 10px;
  }

  .site-header__bar {
    border-radius: 14px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .header-cta,
  .btn {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero h1,
  .hero__headline {
    font-size: clamp(31px, 8vw, 42px);
  }

  .hero__description {
    font-size: 16px;
    line-height: 1.5;
  }

  .section {
    padding: 70px 0;
  }

  .section__head h2,
  .location__info h2,
  .cta-panel h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .trust-strip {
    margin-top: -24px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px 14px;
  }

  .trust-strip article:last-child {
    border-bottom: 0;
    padding-bottom: 4px;
  }

  .location__map iframe {
    height: 300px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
