/* =========================================================
   CASA QD 101 — RECANTO DAS EMAS
   LP editorial · Sara Araújo · CRECI/DF 27053
   Paleta: creme · azul marinho · dourado · hairlines
   Tipografia: Fraunces (serif) + Inter (sans)
   ========================================================= */

/* ============== TOKENS ============== */
:root {
  /* Fundos */
  --bg-cream: #F4EFE3;
  --bg-cream-2: #ECE5D2;
  --bg-blue: #0B1F33;
  --bg-blue-2: #061627;

  /* Dourados */
  --gold: #B8923A;
  --gold-light: #D9BC73;
  --gold-deep: #7A5E22;
  --gold-soft: rgba(184, 146, 58, 0.12);

  /* Texto */
  --ink: #1A1A1A;
  --ink-soft: #5A5A5A;
  --ink-mute: #8A8A8A;

  /* Linhas */
  --hairline: #D4C99B;
  --hairline-soft: #E5DCC4;

  /* WhatsApp */
  --wa: #1FAF54;
  --wa-deep: #178C42;

  /* Tipografia */
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Ritmo */
  --section-y: clamp(64px, 9vw, 120px);
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Movimento */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============== RESET ============== */
*,
*::before,
*::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* CRÍTICO mobile: nunca deixa a página "vazar" pra fora do viewport.
     overflow-x: clip (não hidden!) — hidden no html quebra position:fixed
     nos navegadores mobile (header some no load). clip bloqueia o overflow
     sem virar scroll container. hidden fica como fallback p/ browsers velhos. */
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100vw;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01' on, 'cv11' on;
  /* Reforço contra overflow horizontal — clip vence, hidden é fallback.
     (hidden no body também pode atrapalhar o repaint do header fixed no iOS) */
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100vw;
  position: relative;
}
/* Garante que SVGs inline nunca estourem o container (mobile crítico) */
img, svg { display: block; max-width: 100%; }
/* SVGs sem width/height explícito ficam restritos ao contexto */
.btn svg, a svg, button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
.hero__title *, .hero__title {
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-style: none !important;
  text-decoration-color: transparent !important;
}
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.1; letter-spacing: -0.015em; }
p { margin: 0; }

/* ============== UTILITY ============== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow--light { color: var(--gold-light); }
.eyebrow--ink { color: var(--ink-soft); }

.hairline {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--hairline);
  border: 0;
  margin: 0;
}

.hairline--gold { background: var(--gold); }
.hairline--light { background: rgba(217, 188, 115, 0.35); }

/* ============== TOP BAR (jornal) ============== */
.topbar {
  background: var(--bg-cream);
  border-bottom: 1px solid var(--hairline-soft);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}
.topbar__left { color: var(--ink-mute); }
.topbar__center {
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.22em;
}
.topbar__right { color: var(--gold); font-weight: 500; }

@media (max-width: 720px) {
  .topbar__left, .topbar__right { display: none; }
  .topbar__center { letter-spacing: 0.16em; font-size: 10px; }
}

/* ============== HEADER (liquid glass) ============== */
.header {
  /* fixed: header FLUTUA por cima da hero, não ocupa espaço no fluxo.
     Assim a foto começa no y=0 e o blur do glass mostra a foto atrás. */
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 50;
  /* Padding lateral pequeno pra não cortar conteúdo em mobile */
  padding: 0 12px;
}
@media (min-width: 640px) {
  .header { padding: 0 var(--gutter); }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
  position: relative;
  /* Liquid glass: fundo translúcido com gradiente + blur pesado + borda fina */
  background:
    linear-gradient(180deg,
      rgba(244, 239, 227, 0.78) 0%,
      rgba(236, 229, 210, 0.65) 100%
    );
  backdrop-filter: saturate(180%) blur(24px) brightness(1.05);
  -webkit-backdrop-filter: saturate(180%) blur(24px) brightness(1.05);
  border: 1px solid rgba(217, 188, 115, 0.35);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,   /* brilho interno superior */
    0 -1px 0 rgba(11, 31, 51, 0.04) inset,     /* sombra interna inferior */
    0 8px 24px -8px rgba(11, 31, 51, 0.18),    /* sombra externa */
    0 20px 40px -20px rgba(11, 31, 51, 0.12);  /* sombra difusa */
}
/* Glow dourado sutil atrás do header (apenas desktop) */
.header__inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  background: linear-gradient(135deg,
    rgba(217, 188, 115, 0.4) 0%,
    transparent 40%,
    transparent 60%,
    rgba(217, 188, 115, 0.2) 100%
  );
  z-index: -1;
  filter: blur(8px);
  opacity: 0.7;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand__mark {
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.6s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.1); }
.brand__name { font-weight: 500; }
.brand__sep { color: var(--gold-light); margin: 0 2px; }
.brand__meta {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* CRECI discreto no canto direito (substitui a top bar) */
.header__creci {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid rgba(184, 146, 58, 0.25);
  border-radius: 100px;
  background: rgba(184, 146, 58, 0.06);
}
.header__creci::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(184, 146, 58, 0.15);
}
@media (max-width: 720px) {
  .header__creci { display: none; }
  .header__inner {
    padding: 10px 12px;
    gap: 8px;
    min-width: 0; /* crítico: permite encolhimento em flex */
  }
  .brand {
    font-size: 15px;
    gap: 6px;
    min-width: 0; /* não força largura mínima */
    flex: 0 1 auto;
  }
  .brand__name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 140px;
  }
  .brand__meta, .brand__sep { display: none; }
  .header__actions {
    /* críticas: permite encolhimento e remoção de brilhos extras */
    min-width: 0;
    flex-shrink: 0;
  }
  .header .btn {
    padding: 8px 12px;
    font-size: 12px;
    white-space: nowrap;
    letter-spacing: 0;
    min-width: 0;
    box-sizing: border-box;
  }
}
@media (min-width: 721px) {
  /* Desktop: mostra "Falar com Sara", esconde "WhatsApp" */
  .header__cta-short { display: none; }
  .header__cta-full { display: inline; }
}
@media (max-width: 720px) {
  /* Mobile: mostra "WhatsApp" (curto), esconde "Falar com Sara" */
  .header__cta-short { display: inline; }
  .header__cta-full { display: none; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; right: auto; left: 0; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 900px) {
  .nav { display: none !important; }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg-cream);
  border: 1px solid var(--ink);
}
.btn--primary:hover {
  background: var(--bg-blue);
  border-color: var(--bg-blue);
  color: #fff;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg-cream);
}
.btn--gold {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
}
.btn--whatsapp {
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-deep) 100%);
  color: #fff;
  border: 1px solid var(--wa-deep);
  border-radius: 100px; /* pill: bem mais arredondado */
  box-shadow: 0 6px 20px rgba(31, 175, 84, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
/* Pulso verde suave — chama atenção sem gritar */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(31, 175, 84, 0.3), 0 0 0 0 rgba(31, 175, 84, 0.45); }
  50%      { box-shadow: 0 6px 24px rgba(31, 175, 84, 0.4), 0 0 0 12px rgba(31, 175, 84, 0); }
}
.btn--whatsapp { animation: waPulse 2.8s ease-in-out infinite; }
/* Brilho deslizante */
.btn--whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  animation: waShine 4s ease-in-out infinite;
}
@keyframes waShine {
  0%, 60%  { left: -80%; }
  85%, 100% { left: 130%; }
}
.btn--whatsapp:hover {
  background: linear-gradient(135deg, #25d366 0%, var(--wa) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(31, 175, 84, 0.45);
}
.btn--whatsapp svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--lg { padding: 18px 32px; font-size: 15px; }
.btn--sm { padding: 10px 18px; font-size: 13px; }

@media (max-width: 720px) {
  .btn--lg { padding: 14px 18px; font-size: 14px; }
  .btn--sm { padding: 9px 14px; font-size: 12px; }
}

/* ============== HERO (full-bleed com foto) ============== */
.hero {
  position: relative;
  background: var(--bg-blue);
  color: #fff;
  border-bottom: 1px solid rgba(217, 188, 115, 0.2);
  overflow: hidden;
  isolation: isolate;
  /* Desktop: preenche 100vh completo, header fica por cima */
  min-height: 100vh;
  min-height: 100svh; /* vence nos modernos: altura VISÍVEL (desconta barra do navegador) */
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* Fundo base enquanto carrega primeira imagem */
  background: var(--bg-blue);
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  will-change: opacity, transform;
}
/* Cada slide recebe um delay diferente pra criar o efeito cross-fade contínuo.
   4 fotos × 4s = 16s de ciclo (transição mais ágil).
   Ken Burns: zoom de 1.0 → 1.32 em cada foto (mais intenso).
   Cross-fade acontece nos ~12% finais de cada ciclo. */
.hero__slide:nth-child(1) {
  background-image: url('../img/hero-01.jpg');
  animation: heroFade 16s ease-in-out infinite;
  animation-delay: 0s;
}
.hero__slide:nth-child(2) {
  background-image: url('../img/hero-02.jpg');
  animation: heroFade 16s ease-in-out infinite;
  animation-delay: 4s;
}
.hero__slide:nth-child(3) {
  background-image: url('../img/hero-03.jpg');
  animation: heroFade 16s ease-in-out infinite;
  animation-delay: 8s;
}
.hero__slide:nth-child(4) {
  background-image: url('../img/hero-04.jpg');
  animation: heroFade 16s ease-in-out infinite;
  animation-delay: 12s;
}
/* Keyframes do cross-fade + Ken Burns.
   Permanente: zoom de 1.0 → 1.32 em 4s (Ken Burns intenso).
   Fade: opacity 0 → 1 no início, 1 → 0 no final. */
@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.0); }
  10%  { opacity: 1; transform: scale(1.03); }
  88%  { opacity: 1; transform: scale(1.32); }
  100% { opacity: 0; transform: scale(1.32); }
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(11, 31, 51, 0.65) 0%,
      rgba(11, 31, 51, 0.4) 40%,
      rgba(11, 31, 51, 0.05) 70%,
      rgba(11, 31, 51, 0) 100%
    );
  z-index: 1;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  padding: clamp(56px, 6vh, 86px) var(--gutter) clamp(28px, 3vh, 56px);
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 2;
  /* Sem min-height: 100% - isso somava padding + 100vh = overflow.
     O conteúdo apenas flui naturalmente dentro da hero de 100vh.
     padding-top aqui serve para o texto não ficar atrás do header. */
  padding-top: 90px;
}
.hero__copy { max-width: 640px; }
.hero__label {
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 10px;
}
.hero__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
  font-variation-settings: 'opsz' 120;
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin-bottom: 14px;
  color: #fff;
  text-wrap: balance;
  text-decoration: none;
  -webkit-text-decoration: none;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
  text-decoration: none;
  -webkit-text-decoration: none;
}
.hero__title strong {
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  -webkit-text-decoration: none;
}
.hero__sub {
  font-size: clamp(13px, 1.05vw, 14px);
  line-height: 1.5;
  color: rgba(244, 239, 227, 0.85);
  margin-bottom: 16px;
  max-width: 540px;
  /* Não vaza do container */
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero__seals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(217, 188, 115, 0.3);
  max-width: 620px;
}
.hero__seal {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(217, 188, 115, 0.08);
  border: 1px solid rgba(217, 188, 115, 0.35);
  border-radius: 100px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.hero__seal:hover {
  background: rgba(217, 188, 115, 0.15);
  border-color: rgba(217, 188, 115, 0.6);
}
.hero__seal-icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.hero__seal-icon svg { width: 14px; height: 14px; }
.hero__seal strong {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

/* Mobile: pílulas mais compactas */
@media (max-width: 720px) {
  .hero__seals {
    gap: 6px;
    margin-bottom: 16px;
    padding-top: 12px;
  }
  .hero__seal {
    padding: 5px 10px;
    gap: 5px;
  }
  .hero__seal strong {
    font-size: 11px;
  }
  .hero__seal-icon { width: 12px; height: 12px; }
  .hero__seal-icon svg { width: 12px; height: 12px; }
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============= BOTÕES DA HERO (com efeito shine + glow) ============= */
.hero .btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--bg-blue);
  border: 1px solid var(--gold-light);
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow:
    0 0 0 0 rgba(217, 188, 115, 0.55),
    0 6px 18px -4px rgba(184, 146, 58, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: heroBtnPulse 2.6s ease-in-out infinite;
}
/* Faixa de brilho que atravessa o botão */
.hero .btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: heroBtnShine 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.hero .btn--primary > * { position: relative; z-index: 2; } /* texto/ícone acima do shine */
.hero .btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, #E5CC8A 50%, var(--gold-light) 100%);
  border-color: #E5CC8A;
  transform: translateY(-1px);
  animation-play-state: paused;
}
@keyframes heroBtnShine {
  0%   { left: -100%; }
  60%  { left: 200%; }
  100% { left: 200%; }
}
@keyframes heroBtnPulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(217, 188, 115, 0.55),
      0 6px 18px -4px rgba(184, 146, 58, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(217, 188, 115, 0),
      0 8px 22px -4px rgba(184, 146, 58, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}

.hero .btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(217, 188, 115, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .btn--ghost:hover {
  background: rgba(217, 188, 115, 0.18);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

/* Caption discreta no canto inferior direito da hero */
.hero__caption {
  position: absolute;
  bottom: 20px;
  right: var(--gutter);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.6);
  z-index: 1;
}
.hero__caption strong { color: rgba(244, 239, 227, 0.85); font-weight: 500; margin-right: 8px; }

/* Mobile: foto centralizada, gradiente mais forte pra ler o texto */
@media (max-width: 900px) {
  .hero {
    /* Header agora é fixed (flutua por cima) — hero ocupa a tela VISÍVEL inteira.
       Ordem importa: svh vence (desconta barra do navegador no load do mobile). */
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero__bg {
    background-position: 65% center; /* ajuste fino do crop mobile */
  }
  .hero__bg::after {
    /* Overlay CLARO: escuro só onde tem texto (esquerda) e um leve
       reforço no topo/fundo. O meio-direito mostra a foto com cor real. */
    background:
      linear-gradient(100deg,
        rgba(11, 31, 51, 0.55) 0%,
        rgba(11, 31, 51, 0.28) 45%,
        rgba(11, 31, 51, 0.08) 75%,
        rgba(11, 31, 51, 0) 100%),
      linear-gradient(180deg,
        rgba(11, 31, 51, 0.35) 0%,
        rgba(11, 31, 51, 0) 28%,
        rgba(11, 31, 51, 0) 72%,
        rgba(11, 31, 51, 0.28) 100%);
  }
  .hero__inner {
    /* padding-top generoso: conteúdo desce e respira longe do header flutuante */
    padding: 130px var(--gutter) 40px;
    min-height: 100%;
    align-items: center; /* centralizado verticalmente */
  }
  /* Headline grande no mobile — mas cabe junto com o resto */
  .hero__title {
    font-size: clamp(34px, 9.5vw, 46px);
    line-height: 1.08;
    /* Sombra suave: mantém leitura mesmo com overlay claro */
    text-shadow: 0 2px 18px rgba(11, 31, 51, 0.55), 0 1px 3px rgba(0, 0, 0, 0.45);
  }
  /* SCRIM: halo escuro suave só atrás do bloco de texto.
     A foto continua clara ao redor; o destaque fica no conteúdo. */
  .hero__copy {
    position: relative;
  }
  .hero__copy::before {
    content: '';
    position: absolute;
    inset: -34px -40px;
    background: radial-gradient(110% 85% at 38% 45%,
      rgba(11, 31, 51, 0.62) 0%,
      rgba(11, 31, 51, 0.4) 48%,
      rgba(11, 31, 51, 0.12) 72%,
      transparent 100%);
    filter: blur(26px);
    z-index: -1;
    border-radius: 56px;
  }
  /* Subtítulo um pouco maior e com mais espaço */
  .hero__sub {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
    color: rgba(244, 239, 227, 0.95);
    text-shadow: 0 1px 12px rgba(11, 31, 51, 0.6);
  }
  .hero__caption {
    bottom: 12px;
    right: var(--gutter);
    font-size: 10px;
    /* Caption truncado pra não estourar viewport mobile */
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: right;
  }
  /* Botões do hero: empilhados vertical no mobile */
  .hero__actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    font-size: 14px;
    /* Evita que filhos vazem */
    overflow: hidden;
  }
}

/* ============== MANIFESTO ============== */
.manifesto {
  background: var(--bg-cream-2);
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--hairline);
}
.manifesto__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.manifesto__quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  font-weight: 400;
  font-variation-settings: 'opsz' 80;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.manifesto__quote::before,
.manifesto__quote::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.manifesto__quote::after { margin: 32px auto 0; }
.manifesto__signature {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.manifesto__signature strong { color: var(--ink); font-weight: 500; }

/* ============== FEATURES (lista numerada editorial) ============== */
.features {
  background: var(--bg-cream);
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.features__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: start;
}
.features__head { position: sticky; top: 100px; }
.features__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 400;
  font-variation-settings: 'opsz' 100;
  letter-spacing: -0.02em;
  margin-top: 20px;
  margin-bottom: 24px;
}
.features__title em { font-style: italic; color: var(--gold-deep); }
.features__intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 420px;
}

.feature-list { border-top: 1px solid var(--hairline); }
.feature {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.4s var(--ease);
}
.feature:hover { background: var(--gold-soft); padding-left: 16px; padding-right: 16px; margin: 0 -16px; }
.feature__num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  font-variation-settings: 'opsz' 60;
  line-height: 1;
  padding-top: 4px;
}
.feature__body { display: flex; flex-direction: column; gap: 6px; }
.feature__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.feature__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 520px;
}

@media (max-width: 900px) {
  .features__inner { grid-template-columns: 1fr; }
  .features__head { position: static; }
}

/* ============== GALLERY (mosaico assimétrico) ============== */
.gallery {
  background: var(--bg-cream);
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.gallery__head {
  max-width: var(--container);
  margin: 0 auto clamp(40px, 6vw, 64px);
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
}
.gallery__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 400;
  font-variation-settings: 'opsz' 100;
  letter-spacing: -0.02em;
  margin-top: 20px;
}
.gallery__title em { font-style: italic; color: var(--gold-deep); }
.gallery__count {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  padding-bottom: 8px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  grid-auto-flow: dense;
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--bg-cream-2);
  cursor: zoom-in;
  transition: opacity 0.4s var(--ease);
}
.gallery__item:hover { opacity: 0.92; }
/* Fotos destaque ocupam célula dupla — cria ritmo editorial no mosaico */
.gallery__item--feature { grid-column: span 2; grid-row: span 2; }

.gallery__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink-mute);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(184, 146, 58, 0.05), rgba(11, 31, 51, 0.04)), var(--bg-cream-2);
}
.gallery__placeholder::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--hairline);
  pointer-events: none;
}
.gallery__placeholder-num {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
}
.gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }

@media (max-width: 720px) {
  .gallery__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin: 0 calc(-1 * var(--gutter));
    padding: 0 var(--gutter);
    scrollbar-width: none;
  }
  .gallery__grid::-webkit-scrollbar { display: none; }
  .gallery__item {
    flex: 0 0 82%;
    aspect-ratio: 4 / 5;
    scroll-snap-align: center;
  }
  .gallery__item--feature { grid-column: auto; grid-row: auto; height: auto; }
}

/* ============== LIGHTBOX ============== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 51, 0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox__inner {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: var(--bg-blue-2);
  border: 1px solid rgba(217, 188, 115, 0.2);
}
.lightbox__placeholder {
  width: min(70vw, 720px);
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--bg-blue-2);
  border: 1px solid rgba(217, 188, 115, 0.2);
}
.lightbox__caption {
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(244, 239, 227, 0.06);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(217, 188, 115, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(217, 188, 115, 0.18); }
.lightbox__close { top: -56px; right: 0; }
.lightbox__nav--prev { left: -64px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: -64px; top: 50%; transform: translateY(-50%); }
.lightbox__close svg, .lightbox__nav svg { width: 18px; height: 18px; }

@media (max-width: 720px) {
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: 8px; right: 8px; }
}

/* ============== STATS (azul marinho) ============== */
.stats {
  background: var(--bg-blue);
  color: var(--bg-cream);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light) 30%, var(--gold-light) 70%, transparent);
}
.stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.stats__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 80px);
  gap: 24px;
  flex-wrap: wrap;
}
.stats__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 400;
  font-variation-settings: 'opsz' 80;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 700px;
  margin-top: 16px;
}
.stats__title em { font-style: italic; color: var(--gold-light); }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(217, 188, 115, 0.2);
}
.stat {
  padding: 36px 28px 36px 0;
  border-right: 1px solid rgba(217, 188, 115, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 400;
  font-variation-settings: 'opsz' 120;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.stat__num em { font-style: italic; color: var(--gold-light); }
.stat__num sup {
  font-size: 0.4em;
  font-weight: 500;
  vertical-align: top;
  margin-left: 2px;
  color: var(--gold-light);
  letter-spacing: 0;
}
.stat__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.stat__sub {
  font-size: 13px;
  color: rgba(244, 239, 227, 0.55);
}

@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(217, 188, 115, 0.15); }
  .stat { padding: 28px 20px 28px 0; }
}

/* ============== LOCATION ============== */
.location {
  background: var(--bg-cream-2);
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--hairline);
}
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: center;
}
.location__copy { max-width: 500px; }
.location__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 400;
  font-variation-settings: 'opsz' 100;
  letter-spacing: -0.02em;
  margin-top: 20px;
  margin-bottom: 24px;
}
.location__title em { font-style: italic; color: var(--gold-deep); }
.location__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.location__list { display: flex; flex-direction: column; gap: 14px; }
.location__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--ink);
}
.location__item:last-child { border-bottom: 0; }
.location__item svg { width: 16px; height: 16px; color: var(--gold); }
.location__item strong { font-weight: 500; }

.location__map {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-cream);
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.location__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(0.95); }
.location__map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink-mute);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background:
    linear-gradient(45deg, var(--bg-cream-2) 25%, transparent 25%),
    linear-gradient(-45deg, var(--bg-cream-2) 25%, transparent 25%),
    var(--bg-cream);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
}
.location__map-pin {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 6px 20px rgba(184, 146, 58, 0.4);
}
.location__map-pin svg { width: 22px; height: 22px; color: #fff; transform: rotate(45deg); }
.location__map-pin-label {
  background: var(--ink);
  color: var(--bg-cream);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .location__inner { grid-template-columns: 1fr; }
  .location__map { aspect-ratio: 16 / 11; order: -1; }
}

/* ============== ABOUT (Sara) ============== */
.about {
  background: var(--bg-cream);
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 7vw, 96px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-cream-2);
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 4px; /* Editorial: nada de cantos muito arredondados */
  box-shadow: 0 30px 60px -30px rgba(11, 31, 51, 0.25), 0 1px 0 var(--gold) inset;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%; /* Enquadra o rosto (Sara está mais ao alto da foto) */
  /* Vinheta interna sutil: profundidade sem cobrir a foto */
  filter: contrast(1.02) saturate(1.02);
}
.about__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11, 31, 51, 0) 60%,
    rgba(11, 31, 51, 0.18) 100%);
  pointer-events: none;
}
.about__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-mute);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(184, 146, 58, 0.04), rgba(11, 31, 51, 0.04)), var(--bg-cream-2);
}
.about__photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed var(--hairline);
}
.about__photo-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--ink);
  color: var(--gold-light);
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  text-align: center;
  line-height: 1.1;
  padding: 8px;
}
.about__photo-badge strong { font-size: 18px; font-weight: 500; display: block; }
.about__photo-badge span { font-family: var(--font-sans); font-size: 8px; letter-spacing: 0.16em; color: rgba(217, 188, 115, 0.7); margin-top: 2px; }

.about__copy { max-width: 560px; }
.about__name {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.6vw, 64px);
  font-weight: 400;
  font-variation-settings: 'opsz' 120;
  letter-spacing: -0.025em;
  margin: 20px 0 8px;
  line-height: 1;
}
.about__creci {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
}
.about__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 32px;
}
.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__stat-num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold-deep);
  font-weight: 500;
  line-height: 1;
}
.about__stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__photo { aspect-ratio: 4 / 5; max-width: 360px; margin: 0 auto; }
  .about__photo-badge { right: 8px; bottom: -16px; }
}

/* ============== PRICE BLOCK ============== */
.price {
  background: var(--bg-cream-2);
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--hairline);
}
.price__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.price__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 400;
  font-variation-settings: 'opsz' 100;
  letter-spacing: -0.02em;
  margin: 20px 0 16px;
}
.price__title em { font-style: italic; color: var(--gold-deep); }
.price__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 40px;
}
.price__card {
  position: relative;
  background: var(--bg-cream);
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 64px);
  border: 1px solid var(--hairline);
  text-align: center;
  overflow: hidden;
}
.price__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light) 50%, var(--gold-deep));
}
.price__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.price__value {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 24px;
}
.price__value em { font-style: italic; color: var(--gold-deep); }
.price__note {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 28px;
}
.price__docs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 32px;
}
.price__doc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.price__doc svg { width: 14px; height: 14px; color: var(--gold); }
.price__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ============== FINAL CTA ============== */
.final {
  background: var(--bg-blue);
  color: var(--bg-cream);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light) 30%, var(--gold-light) 70%, transparent);
}
.final__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
}
.final__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 400;
  font-variation-settings: 'opsz' 120;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.05;
  margin: 20px 0 24px;
}
.final__title em { font-style: italic; color: var(--gold-light); }
.final__sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(244, 239, 227, 0.7);
  max-width: 560px;
  margin: 0 auto 40px;
}
.final__cta { display: inline-flex; flex-direction: column; align-items: center; gap: 16px; }
.final__small {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(217, 188, 115, 0.7);
}

/* ============== FOOTER ============== */
.footer {
  background: var(--bg-cream-2);
  padding: 56px 0 28px;
  border-top: 1px solid var(--hairline);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--hairline);
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer__brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.footer__brand em { font-style: italic; color: var(--gold); }
.footer__tagline {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 320px;
}
.footer__list { display: flex; flex-direction: column; gap: 12px; }
.footer__list li { font-size: 14px; color: var(--ink-soft); }
.footer__list strong { color: var(--ink); font-weight: 500; display: block; }
.footer__list a:hover { color: var(--gold); }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============== WHATSAPP FLUTUANTE ============== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-deep) 100%);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(31, 175, 84, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s var(--ease);
}
/* Anel pulsante expansivo — o "radar" do WhatsApp */
@keyframes waFloatRing {
  0%   { box-shadow: 0 8px 24px rgba(31, 175, 84, 0.35), 0 0 0 0 rgba(31, 175, 84, 0.5); }
  70%  { box-shadow: 0 8px 24px rgba(31, 175, 84, 0.35), 0 0 0 18px rgba(31, 175, 84, 0); }
  100% { box-shadow: 0 8px 24px rgba(31, 175, 84, 0.35), 0 0 0 0 rgba(31, 175, 84, 0); }
}
.wa-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: waFloatRing 2.4s ease-out infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.06); }
.wa-float svg { width: 24px; height: 24px; }

@media (min-width: 721px) {
  .wa-float { width: 56px; height: 56px; bottom: 28px; right: 28px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ============== REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: sem JS, mostra tudo */
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============== ESCONDER ESTADOS ============== */
[hidden] { display: none !important; }

/* ============== SELEÇÃO DE TEXTO ============== */
::selection {
  background: var(--gold);
  color: #fff;
}

/* ============== ACESSIBILIDADE: prefere menos movimento ============== */
@media (prefers-reduced-motion: reduce) {
  .hero .btn--primary,
  .hero .btn--primary::before,
  .btn--whatsapp,
  .btn--whatsapp::before,
  .wa-float.is-visible {
    animation: none !important;
  }
}
