/* ============================================================================
   DRA. MIRIAN BENTO — Identidade visual
   ----------------------------------------------------------------------------
   Override de tokens.template.css do kit + estilos por seção.
   Paleta: branco clean + gradiente bordô suave + acento dourado + CTA verde folha.
   Tipo:   Outfit (display, 300/400/500) + Inter (body, 400/500). Sem 700+.
   ========================================================================== */

:root {
  /* ── Paleta semântica (override do template) ─────────────────── */
  --ink:        #4A0030;             /* bordô profundo, quase preto */
  --sand:       #FFFFFF;             /* branco clean */
  --cream:      #FCFAFA;             /* off-white com leve rose */
  --muted:      #9C7790;             /* rose dessaturado */
  --body:       #5C003E;             /* texto corrido */
  --accent:     #4C833C;             /* verde folha — CTA */
  --accent-2:   #3E7B34;             /* verde folha hover */
  --accent-gold:#C9A961;             /* dourado quente — destaques */
  --accent-gold-2: #B89344;          /* dourado hover */
  --surface:    #FAEEF4;             /* cards com leve rose */
  --line:       rgba(92, 0, 62, 0.10);
  --line-strong:rgba(92, 0, 62, 0.20);

  /* ── Gradientes ──────────────────────────────────────────────── */
  --grad-wine: linear-gradient(135deg, #5C003E 0%, #9B1D61 100%);
  --grad-wine-deep: linear-gradient(160deg, #380026 0%, #5C003E 60%, #810C55 100%);
  --grad-leaf:   linear-gradient(135deg, #4C833C 0%, #6FA858 100%);
  --grad-leaf-hover: linear-gradient(135deg, #3E7B34 0%, #5C9650 100%);

  /* ── Tipografia ──────────────────────────────────────────────── */
  --font-display: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
  --font-body:    'Be Vietnam Pro', system-ui, -apple-system, sans-serif;

  /* Escala — ajustada pra acessibilidade visual (público 45+) */
  --fs-h1:      clamp(2.4rem, 5vw, 4.2rem);
  --fs-h2:      clamp(1.9rem, 3.8vw, 3.2rem);
  --fs-h3:      clamp(1.3rem, 1.9vw, 1.6rem);
  --fs-body:    clamp(1.1rem, 1.2vw, 1.22rem);     /* 17.6 → 19.5px */
  --fs-lede:    clamp(1.2rem, 1.5vw, 1.4rem);      /* 19.2 → 22.4px */
  --fs-small:   1rem;                              /* 16px (era 14px) */
  --fs-label:   0.85rem;                           /* 13.6px (era 12px) */

  /* ── Ritmo ───────────────────────────────────────────────────── */
  --section-py:    clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --container-px:  clamp(1.25rem, 4vw, 2.5rem);

  /* ── Raios ───────────────────────────────────────────────────── */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill: 999px;

  /* ── Sombras ─────────────────────────────────────────────────── */
  --shadow-sm: 0 2px 10px rgba(92, 0, 62, 0.06);
  --shadow-md: 0 12px 32px rgba(92, 0, 62, 0.10);
  --shadow-lg: 0 24px 60px rgba(92, 0, 62, 0.14);
  --shadow-leaf: 0 12px 28px rgba(76, 131, 60, 0.25);

  /* ── Transições ──────────────────────────────────────────────── */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:    180ms;
  --t-base:    320ms;
  --t-slow:    560ms;
}

/* ── Base ─────────────────────────────────────────────────────── */
html, body {
  background: var(--sand);
  color: var(--body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;                  /* mais respiro entre linhas pra 45+ */
  /* Trava scroll horizontal */
  overflow-x: hidden;
  max-width: 100%;
}

::selection {
  background: var(--accent-gold);
  color: var(--ink);
}

/* ── Tipografia geral ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-weight: 400;
}

strong, b { font-weight: 500; color: var(--ink); }
em {
  /* Sem itálico — ênfase via cor dourada + peso médio */
  font-style: normal;
  color: var(--accent-gold);
  font-weight: 500;
}

.gold { color: var(--accent-gold); font-weight: 500; }

/* ── Section header customizado (override do primitive) ──────── */
.section-header { margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-header-center { margin-inline: auto; text-align: center; }
.section-header-center .section-label { justify-content: center; display: inline-flex; }

.section-label {
  color: var(--accent-gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.25vw, 1.05rem);
  letter-spacing: 0.22em;
}
.section-label .label-line {
  background: var(--accent-gold);
  opacity: 1;
  height: 2px;
  width: 36px;
}

.section-title {
  font-weight: 400;
  font-size: var(--fs-h2);
}

.section-caption {
  color: var(--body);
  font-size: var(--fs-lede);
  max-width: 60ch;
  line-height: 1.55;
}
.section-header-center .section-caption { margin-inline: auto; }

/* ============================================================================
   CTA BUTTONS (override do primitive)
   ========================================================================== */
.cta-button {
  background: var(--grad-leaf);
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-leaf);
  white-space: nowrap;                    /* não quebra texto do botão */
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              background var(--t-base) var(--ease-out);
}
.cta-button:hover {
  background: var(--grad-leaf-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(76, 131, 60, 0.35);
}
.cta-button:active { transform: translateY(0); }

.cta-large {
  padding: 1.15rem 2rem;
  font-size: 1.05rem;
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.95rem 1.4rem;
  color: var(--ink);
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  transition: all var(--t-base) var(--ease-out);
}
.cta-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ============================================================================
   NAV
   ========================================================================== */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /* Background SEMPRE presente — não depende de JS adicionar .scrolled.
     Sutil no topo da página (sobre hero branco), forte no scroll. */
  background: rgba(251, 249, 253, 0.75);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(74, 0, 48, 0.04);
  transition: transform var(--t-base) var(--ease-out),
              background var(--t-base) var(--ease-out),
              backdrop-filter var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.nav-wrapper.scrolled {
  /* Reforço no scroll — perceptível sobre qualquer fundo, inclusive bordô */
  background: rgba(251, 249, 253, 0.95);
  backdrop-filter: saturate(200%) blur(24px);
  -webkit-backdrop-filter: saturate(200%) blur(24px);
  border-bottom-color: rgba(74, 0, 48, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 12px 32px rgba(74, 0, 48, 0.10);
}
/* Browsers sem suporte a backdrop-filter — fundo sólido */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav-wrapper { background: rgba(251, 249, 253, 0.92); }
  .nav-wrapper.scrolled { background: rgba(251, 249, 253, 0.98); }
}
.nav-wrapper.nav-hidden { transform: translateY(-100%); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
}
.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-links li a {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  color: var(--body);
  font-size: 1rem;               /* era 0.94 → 16px */
  font-weight: 400;
  border-radius: var(--radius-pill);
  transition: color var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
}
.nav-links li a:hover { color: var(--ink); background: var(--surface); }

.nav-links li .nav-cta {
  background: var(--grad-leaf);
  color: #fff;
  padding: 0.6rem 1.1rem;
  margin-left: 0.6rem;
  font-weight: 500;
}
.nav-links li .nav-cta:hover {
  background: var(--grad-leaf-hover);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.65rem;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201, 169, 97, 0.15);
  position: relative;
  z-index: 120;                  /* sempre acima do mobile-menu (110) */
  background: transparent;
  border: 0;
}
.nav-toggle > * { pointer-events: none; }  /* bars não bloqueiam o click */
.nav-toggle .bar {
  width: 24px; height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-out),
              opacity var(--t-base) var(--ease-out);
}
.nav-toggle.is-open .bar-1 { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .bar-2 { opacity: 0; }
.nav-toggle.is-open .bar-3 { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu overlay ──────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--grad-wine-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 0.2rem; text-align: center; }
.mobile-nav-link {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.mobile-menu-cta {
  margin-top: 1.25rem;
  background: var(--grad-leaf);
  color: #fff;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 1rem;
}

/* ============================================================================
   1. HERO — split-screen editorial, foto bleed à direita
   ========================================================================== */
.hero {
  position: relative;
  background: var(--sand);
  padding-top: clamp(5.5rem, 8vw, 7rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(74, 0, 48, 0.10);
  /* Trava a hero em exatamente 100vh — nunca passa */
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "copy figure"
    "ctas figure";
  align-items: stretch;
  flex: 1;
  min-height: 0;
}

.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
  padding-left: var(--container-px);
  padding-right: clamp(2rem, 4vw, 4rem);
  padding-top: clamp(1rem, 2vw, 1.75rem);
  padding-bottom: 0;
  max-width: calc(var(--container-max) / 2 + var(--container-px));
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-figure { grid-area: figure; }

/* CTAs ganham sua própria linha no grid (abaixo do copy no desktop) */
.hero-grid > .hero-ctas {
  grid-area: ctas;
  padding-left: var(--container-px);
  padding-right: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-top: 1rem;
  max-width: calc(var(--container-max) / 2 + var(--container-px));
  margin-left: auto;
  width: 100%;
  margin-bottom: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}
.hero-eyebrow .dot {
  width: 5px; height: 5px;
  background: var(--accent-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Tensão tipográfica: sussurro (quiet) → grito (loud) */
.hero-title {
  margin-bottom: 1.15rem;
  letter-spacing: 0;
}
.t-quiet {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  color: var(--muted);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.t-loud {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.9rem, 6.2vw, 5.4rem);
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 0.95;
}
.t-loud::after {
  content: '.';
  color: var(--accent-gold);
  font-style: normal;
}

.hero-lede {
  font-size: clamp(1.08rem, 1.2vw, 1.2rem);   /* ~17-19px */
  line-height: 1.6;
  color: var(--body);
  margin-bottom: 0.7rem;
  max-width: 44ch;
}
.hero-sub {
  font-size: 1rem;                            /* 16px (era 14px) */
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 44ch;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 0.85rem 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* CTA primário sólido (sem gradient, peso de compromisso) */
.cta-solid {
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(74,139,94,0.22);
  border-radius: 8px;
}
.cta-solid:hover {
  background: var(--accent-2);
  box-shadow: 0 14px 32px rgba(74,139,94,0.32);
}

/* CTA secundário: link com seta, sem caixa */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding-block: 0.5rem;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast) var(--ease-out),
              gap var(--t-base) var(--ease-out),
              border-color var(--t-fast) var(--ease-out);
}
.cta-link:hover {
  color: var(--accent);
  gap: 0.85rem;
  border-bottom-color: var(--accent);
}
.cta-link span { transition: transform var(--t-base) var(--ease-out); }
.cta-link:hover span { transform: translateX(3px); }

.hero-credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  flex-wrap: wrap;
}
.cred-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
}
.cred-sep {
  width: 4px; height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.7;
}
.cred-detail {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* Foto: sai da própria coluna, alinhada no bottom, invade a coluna do texto */
.hero-figure {
  position: relative;
  overflow: visible;
  min-height: 0;
  z-index: 1;
}
.hero-figure picture {
  display: block;
  position: absolute;
  bottom: 0;
  left: -32%;            /* extravasa pra esquerda, invadindo coluna do texto */
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-figure picture img {
  display: block;
  height: 100%;          /* ocupa toda a altura do picture */
  width: auto;           /* width acompanha proporção natural da foto */
  max-width: none;       /* permite que a width cresça além da coluna */
}

/* ============================================================================
   PILLS FLUTUANTES — benefícios em torno da foto
   ========================================================================== */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.float-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem 0.55rem 0.55rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(74, 0, 48, 0.06);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 24px rgba(74, 0, 48, 0.10),
    0 24px 48px rgba(74, 0, 48, 0.06);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  animation-name: float-soft;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform;
}

.float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.float-icon svg { width: 14px; height: 14px; }

/* Cada pill com cor de acento ligeiramente diferente — sub-hierarquia */
.float-pill-2 .float-icon { background: #5C003E; } /* bordô */
.float-pill-3 .float-icon { background: var(--accent-gold); color: var(--ink); }

/* Posicionamento desktop — na METADE INFERIOR da foto, longe do rosto */
.float-pill-1 {
  top: auto; bottom: 32%; right: 4%;
  animation-duration: 5.5s;
}
.float-pill-2 {
  top: auto; bottom: 12%; left: -4%;
  animation-duration: 6.5s; animation-delay: -1.5s;
}
.float-pill-3 { display: none; } /* mantém só 2 pills */

@keyframes float-soft {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .float-pill { animation: none; }
}

/* ============================================================================
   2. SINTOMAS — header split (counter à esquerda + intro à direita)
   ========================================================================== */
.symptoms-section {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(74, 0, 48, 0.10) 0%, transparent 55%),
    var(--cream);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.symptoms-header {
  display: grid;
  grid-template-columns: minmax(160px, 260px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.symptoms-counter {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.counter-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4.5rem, 11vw, 8rem);
  line-height: 0.85;
  color: var(--accent-gold);
  letter-spacing: -0.05em;
}
.counter-label {
  font-family: var(--font-body);
  font-size: 0.88rem;            /* era 0.78 → 14px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.symptoms-intro .section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.symptoms-intro em {
  color: var(--accent-gold);
  font-style: normal;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.symptom-card {
  position: relative;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out);
}
.symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.symptom-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--accent-gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.symptom-text {
  font-size: 1.05rem;            /* 16.8px */
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
}
.symptom-text strong { color: var(--ink); font-weight: 500; }

.symptoms-conclusion {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.symptoms-conclusion p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.symptoms-conclusion em {
  color: var(--accent-gold);
  font-style: normal;
  font-weight: 400;
}

/* ============================================================================
   3. MÉTODO — layout editorial vertical, tipografia dominante, sem glass
   ========================================================================== */
.method-section {
  background: var(--grad-wine-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 11vw, 10rem);
  isolation: isolate;
}

/* Watermark "MÉTODO" gigante atrás, em bordô profundo */
.method-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(8rem, 22vw, 22rem);
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 0;
  line-height: 0.85;
  white-space: nowrap;
  user-select: none;
}

.method-section .container { position: relative; z-index: 1; }

.method-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 760px;
}
.method-title { letter-spacing: 0; }
.method-quiet {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.method-loud {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.method-loud::after {
  content: '.';
  color: var(--accent-gold);
  font-style: normal;
}
.method-caption {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-lede);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 56ch;
}

/* Pilares verticais empilhados — tipografia editorial */
.pillars {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  counter-reset: pillar;
}

.pillar {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255,255,255,0.10);
  transition: border-color var(--t-base) var(--ease-out);
}
.pillar:last-child { border-bottom: 1px solid rgba(255,255,255,0.10); }
.pillar:hover { border-color: rgba(201,169,97,0.45); }
.pillar:hover + .pillar { border-top-color: rgba(201,169,97,0.45); }

/* Número outline gigante — peso da decisão tipográfica */
.pillar-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-gold);
  letter-spacing: -0.03em;
  transition: -webkit-text-stroke-color var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out);
}
.pillar:hover .pillar-num {
  color: var(--accent-gold);
  -webkit-text-stroke-color: var(--accent-gold);
}

.pillar-content {
  position: relative;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  border-left: 2px solid rgba(201,169,97,0.6);
  max-width: 60ch;
}

.pillar-title {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.pillar-sub {
  color: var(--accent-gold);
  font-size: 0.88rem;            /* era 0.78 → 14px */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.pillar-text {
  color: rgba(255,255,255,0.82);
  font-size: 1.12rem;            /* 18px */
  line-height: 1.65;
}

.method-cta {
  text-align: center;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

/* ============================================================================
   MARQUEE — assinatura cinematográfica entre Método e Benefícios
   ========================================================================== */
.marquee {
  position: relative;
  overflow: hidden;
  background: #4A0030;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(201,169,97,0.18);
  border-bottom: 1px solid rgba(201,169,97,0.18);
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px, 12vw, 160px);
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #4A0030, transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, #4A0030, transparent); }

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  animation: marquee-scroll 36s linear infinite;
  will-change: transform;
}
.marquee-track span {
  padding-inline: 0.6em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,169,97,0.85);
}
.marquee-track span:nth-child(even) {
  color: #FFFFFF;
  -webkit-text-stroke: 0;
}
.marquee-track span:nth-child(even)::before {
  /* separador dourado entre palavras */
  content: '·';
  margin-right: 0.6em;
  color: var(--accent-gold);
  -webkit-text-stroke: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================================
   4. BENEFÍCIOS — bento asimétrico editorial
   ========================================================================== */
.benefits-section { background: var(--sand); padding-block: clamp(5rem, 9vw, 8rem); }

.benefits-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 720px;
}

.benefits-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 0.85rem;
}

.benefit {
  position: relative;
  padding: 1.75rem 1.6rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out);
}
.benefit:hover { transform: translateY(-3px); }

.benefit-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0;
  color: var(--accent-gold);
  opacity: 1;
  line-height: 1;
}

.benefit-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;            /* era 1.25 → 21.6px */
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.benefit-text {
  color: var(--body);
  font-size: 1.05rem;            /* era 0.95 → 16.8px */
  line-height: 1.6;
  margin-top: auto;
  max-width: 34ch;
}

/* Card #1 — feature 2×2: branco com tipografia gigante + flourish dourado */
.benefit-feature {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 2.25rem 2rem;
  justify-content: space-between;
}
.benefit-feature .benefit-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.benefit-feature .benefit-text {
  font-size: 1.02rem;
  max-width: 38ch;
}
.benefit-flourish {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--accent-gold);
  line-height: 1;
  opacity: 0.5;
  transition: transform var(--t-base) var(--ease-out), opacity var(--t-base) var(--ease-out);
}
.benefit-feature:hover .benefit-flourish { transform: translate(2px, -2px); opacity: 1; }

/* Card #2 — sleep 2×1: rose suave derivado de wine */
.benefit-sleep {
  grid-column: span 2;
  background: linear-gradient(135deg, #FDF4F7 0%, #F8E8EF 100%);
}

/* Cards #3 e #4 — 1×1 simples */
.benefit-weight,
.benefit-mind {
  background: var(--cream);
  border: 1px solid var(--line);
}

/* Card #5 — gut 2×1: bordô profundo dramático, texto branco */
.benefit-gut {
  grid-column: span 2;
  background: var(--ink);
  color: rgba(255,255,255,0.78);
}
.benefit-gut .benefit-title { color: #fff; }
.benefit-gut .benefit-text { color: rgba(255,255,255,0.72); }
.benefit-gut .benefit-tag { color: var(--accent-gold); opacity: 1; }

/* Card #6 — self 2×1: destaque emocional final em creme */
.benefit-self {
  grid-column: span 2;
  background: #FAF5EC;
  border: 1px solid rgba(201,169,97,0.22);
}
.benefit-self .benefit-title {
  font-weight: 500;
}

/* ============================================================================
   5. SOBRE — split cinematográfico (foto + quote) + bio em colunas
   ========================================================================== */
.about-section {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(74, 0, 48, 0.10) 0%, transparent 55%),
    var(--cream);
  padding-block: clamp(6rem, 10vw, 9rem);
}

/* Topo: full-bleed split — foto à esquerda, quote enorme à direita */
.about-cinema {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
  gap: 0;
}

/* ── Foto SOBRE: tratamento editorial — frame, sombra cinematica,
   selo CRN dourado, caption ano e texto vertical lateral ────────── */
.about-figure {
  position: relative;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem)
           clamp(3.5rem, 6vw, 5rem) clamp(3rem, 5vw, 4.5rem);
  isolation: isolate;
}

/* Card decorativo atras — offset diagonal pra dar profundidade */
.about-figure::before {
  content: "";
  position: absolute;
  top: clamp(1rem, 3vw, 2.5rem);
  right: clamp(0.5rem, 2vw, 1.5rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  left: clamp(1rem, 2vw, 1.75rem);
  background:
    radial-gradient(70% 50% at 30% 30%, rgba(201, 169, 97, 0.16) 0%, transparent 70%),
    linear-gradient(135deg, rgba(74, 0, 48, 0.06) 0%, rgba(201, 169, 97, 0.08) 100%);
  border: 1px solid rgba(74, 0, 48, 0.08);
  border-radius: clamp(20px, 3vw, 32px);
  z-index: -1;
}

/* Ornamento dourado decorativo no canto superior direito */
.about-figure::after {
  content: "";
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  width: clamp(40px, 6vw, 64px);
  height: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--accent-gold);
  border-right: 1px solid var(--accent-gold);
  opacity: 0.65;
  z-index: 2;
  pointer-events: none;
}

.about-figure-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: clamp(14px, 2.2vw, 22px);
  overflow: hidden;
  background: var(--cream);
  box-shadow:
    0 22px 50px -18px rgba(74, 0, 48, 0.38),
    0 50px 100px -36px rgba(74, 0, 48, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: rotate(-0.6deg);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.about-figure:hover .about-figure-frame {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 28px 60px -18px rgba(74, 0, 48, 0.42),
    0 60px 120px -36px rgba(74, 0, 48, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.about-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Cantos editoriais — discretos */
.about-figure-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.about-figure-corner--tl {
  top: 12px; left: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-left: 1px solid rgba(255, 255, 255, 0.65);
}
.about-figure-corner--br {
  bottom: 12px; right: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  border-right: 1px solid rgba(255, 255, 255, 0.65);
}

/* Badge CRN flutuante — glassmorphism + accent dourado */
.about-figure-badge {
  position: absolute;
  top: clamp(1rem, 3.5vw, 2.5rem);
  left: clamp(1rem, 3vw, 2rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 22px rgba(74, 0, 48, 0.12);
  z-index: 3;
  white-space: nowrap;
}
.about-figure-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.25);
}

/* Caption editorial no canto inferior — número grande + linha */
.about-figure-caption {
  position: absolute;
  bottom: clamp(0.75rem, 2.5vw, 1.5rem);
  right: clamp(0.5rem, 2vw, 1.5rem);
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  border: 1px solid rgba(74, 0, 48, 0.06);
  box-shadow: 0 10px 28px -12px rgba(74, 0, 48, 0.20);
  z-index: 3;
  max-width: 16ch;
}
.about-figure-caption-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1;
  color: var(--accent-gold);
  letter-spacing: -0.04em;
}
.about-figure-caption-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1.25;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
}

/* Texto vertical lateral — assinatura editorial */
.about-side-label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(-90deg) translate(-50%, -50%);
  transform-origin: left top;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.75;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

/* Mobile: simplifica — frame ainda elegante, mas sem texto vertical
   nem ornamentos exagerados; mantem badge + caption como ancoras
   editoriais. */
@media (max-width: 720px) {
  .about-figure {
    padding: clamp(1.25rem, 4vw, 2rem);
  }
  .about-side-label { display: none; }
  .about-figure::after { display: none; }
  .about-figure-frame {
    transform: none;
    max-width: 360px;
  }
  .about-figure:hover .about-figure-frame { transform: none; }
  .about-figure-badge {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    padding: 0.45rem 0.8rem;
    top: 0.75rem;
    left: 0.75rem;
  }
  .about-figure-caption {
    bottom: 0.5rem;
    right: 0.5rem;
    padding: 0.55rem 0.75rem;
    gap: 0.5rem;
  }
  .about-figure-caption-num { font-size: 1.4rem; }
  .about-figure-caption-text { font-size: 0.65rem; }
}

@media (max-width: 480px) {
  .about-figure-caption-text { display: none; }
  .about-figure-caption { padding: 0.45rem 0.75rem; }
}

.about-quote-wrap {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem)
           clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-label { color: var(--accent-gold); }

.about-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 18ch;
  position: relative;
}
.about-quote p { margin: 0; }
.about-quote em {
  color: var(--accent-gold);
  font-weight: 500;
}
.about-quote .quote-mark {
  font-family: 'Georgia', serif;
  font-style: normal;
  color: var(--accent-gold);
  opacity: 0.6;
  font-size: 1.1em;
  vertical-align: -0.05em;
  padding-inline: 0.05em;
}
.about-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  max-width: 32ch;
  line-height: 1.5;
}

/* Bloco do nome */
.about-name-block {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.about-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.about-role {
  margin-top: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.92rem;            /* era 0.82 → 14.7px */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 500;
}

/* Bio em 3 colunas — densidade editorial */
.about-prose { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.about-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2.5rem;
}
.about-columns p {
  font-size: 1.08rem;            /* 17.3px */
  line-height: 1.7;
  color: var(--body);
}
.about-columns p:first-child::first-letter {
  /* drop cap editorial discreto */
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.6em;
  float: left;
  line-height: 0.9;
  margin: 0.05em 0.12em 0 0;
  color: var(--accent-gold);
}

/* Rodapé com credenciais + CTA */
.about-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;               /* 16px (era 14px) */
  color: var(--muted);
}
.about-credentials li {
  position: relative;
  padding-right: 1.25rem;
}
.about-credentials li:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  color: var(--accent-gold);
  font-size: 1.1em;
}
.about-credentials li:first-child {
  color: var(--ink);
  font-weight: 500;
}

/* ============================================================================
   6. PROCESSO — stepper editorial vertical com conector dourado
   ========================================================================== */
.process-section {
  background: var(--sand);
  padding-block: clamp(5rem, 9vw, 8rem);
}

/* Split: foto à esquerda + header + steps à direita */
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.process-figure {
  position: sticky;
  top: 6rem;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
}
.process-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-content { min-width: 0; }

.process-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
/* Steps mais compactos dentro do split */
.process-grid .flow-step {
  grid-template-columns: clamp(80px, 11vw, 130px) 1fr;
  gap: clamp(1rem, 3vw, 2rem);
}
.process-grid .flow-num {
  font-size: clamp(3rem, 6vw, 5rem);
}
.process-grid .flow-step::after {
  left: clamp(40px, 5.5vw, 65px);
  top: clamp(4rem, 8vw, 6rem);
}

.process-flow {
  display: grid;
  gap: 0;
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  counter-reset: flow;
}

.flow-step {
  display: grid;
  grid-template-columns: clamp(120px, 18vw, 200px) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  position: relative;
}
.flow-step:first-child { border-top: none; padding-top: 0; }
.flow-step:last-child { padding-bottom: 0; }

/* Conector vertical dourado entre os números — só desktop */
.flow-step::after {
  content: '';
  position: absolute;
  left: clamp(60px, 9vw, 100px);
  top: clamp(5.5rem, 12vw, 9rem);
  bottom: -1.5rem;
  width: 1px;
  background: linear-gradient(180deg, var(--accent-gold) 0%, transparent 100%);
  opacity: 0.4;
}
.flow-step:last-child::after { display: none; }

/* Número outline gigante */
.flow-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-gold);
  letter-spacing: -0.03em;
  display: block;
  transition: -webkit-text-stroke-color var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out);
}
.flow-step:hover .flow-num {
  color: var(--accent-gold);
}

.flow-content {
  max-width: 56ch;
  padding-top: 0.5rem;
}

.flow-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;            /* era 0.74 → 13.6px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.flow-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.flow-text {
  color: var(--body);
  font-size: 1.12rem;            /* 18px */
  line-height: 1.7;
}

/* ============================================================================
   7. ATENDIMENTO — duas portas com divisor dourado central
   ========================================================================== */
.places-section {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(74, 0, 48, 0.10) 0%, transparent 55%),
    var(--cream);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.places-header {
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 720px;
}
.places-header .section-label { justify-content: center; display: inline-flex; }
.places-header .section-caption {
  margin-inline: auto;
  font-style: normal;
  color: var(--muted);
}

.places-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
  max-width: 1180px;
  margin-inline: auto;
}

.places-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  min-height: 460px;
  box-shadow: 0 12px 32px rgba(74, 0, 48, 0.06);
}
.places-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(15%) contrast(0.95);
}

.places-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}
.places-stack .portal { padding-block: 0; }
.places-stack .portal + .portal {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.portal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0;
  position: relative;
}

.portal-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;            /* era 0.74 → 13.6px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
}

.portal-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.portal-text {
  color: var(--body);
  font-size: 1.08rem;            /* 17.3px */
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 42ch;
}

.portal-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding-block: 0.6rem;
  border-bottom: 1px solid var(--line-strong);
  align-self: flex-start;
  transition: color var(--t-fast) var(--ease-out),
              gap var(--t-base) var(--ease-out),
              border-color var(--t-fast) var(--ease-out);
}
.portal-cta:hover {
  color: var(--accent);
  gap: 0.85rem;
  border-bottom-color: var(--accent);
}
.portal-cta span { transition: transform var(--t-base) var(--ease-out); }
.portal-cta:hover span { transform: translateX(3px); }

/* ============================================================================
   8. FAQ — layout editorial 2-col: header sticky à esquerda, lista à direita
   ========================================================================== */
.faq-section {
  background: var(--sand);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 6rem;
}
.faq-header .section-caption {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }

.faq-question {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: 1.65rem 0.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  touch-action: manipulation;  /* otimiza tap em mobile (sem 300ms delay) */
  -webkit-tap-highlight-color: rgba(201, 169, 97, 0.15);
  transition: color var(--t-fast) var(--ease-out);
}
/* Garante que spans internos não bloqueiam o click do button */
.faq-question > * { pointer-events: none; }
.faq-question:hover { color: var(--accent-gold); }
.faq-item.is-open .faq-question { color: var(--accent-gold); }

.faq-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0;
  color: var(--accent-gold);
  opacity: 1;
  line-height: 1;
}

.faq-q-text {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.faq-icon {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--t-fast) var(--ease-out);
}
.faq-question:hover .faq-icon,
.faq-item.is-open .faq-icon { opacity: 1; }
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--t-base) var(--ease-out);
}
.faq-icon::before {
  top: 50%; left: 0;
  width: 100%; height: 1px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%; top: 0;
  width: 1px; height: 100%;
  transform: translateX(-50%);
}
.faq-item.is-open .faq-icon::after { transform: translateX(-50%) scaleY(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) var(--ease-out);
}
.faq-item.is-open .faq-answer { max-height: 500px; }
.faq-answer p {
  padding: 0 0 1.75rem clamp(2.5rem, 5vw, 3.75rem);
  color: var(--body);
  font-size: 1.12rem;            /* 18px */
  line-height: 1.75;
  max-width: 64ch;
}

/* ============================================================================
   9. CTA FINAL — pergunta gigante cinematográfica
   ========================================================================== */
.cta-final {
  position: relative;
  padding-block: clamp(7rem, 14vw, 12rem);
  overflow: hidden;
  isolation: isolate;
}
.cta-final-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--grad-wine-deep);
}
.cta-final-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(201,169,97,0.16), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06), transparent 60%);
}

/* Grid split: foto à esquerda + texto à direita */
.cta-final-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.cta-final-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.cta-final-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-final-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(74, 0, 48, 0.4) 100%);
  pointer-events: none;
}

.cta-final-inner {
  text-align: left;
  color: #fff;
  max-width: 540px;
}

.cta-final-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;            /* era 0.74 → 13.6px */
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 2.5rem;
}
.cta-final-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
}

/* Pergunta gigante: sussurro acima, grito abaixo (mesma tipografia do hero) */
.cta-final-title {
  margin-bottom: 2rem;
  letter-spacing: 0;
}
.t-quiet-light {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.t-loud-light {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: 18ch;
}
.t-loud-light::after {
  content: '?';
  color: var(--accent-gold);
  font-style: normal;
  margin-left: 0.05em;
}

.cta-final-text {
  font-size: var(--fs-lede);     /* 19-22px via token novo */
  color: rgba(255,255,255,0.78);
  max-width: 48ch;
  margin: 0 0 2.5rem;
  line-height: 1.65;
}

.cta-final-button {
  padding: 1.2rem 2.25rem;
  font-size: 1.05rem;
  background: var(--accent);
  box-shadow: 0 16px 40px rgba(74,139,94,0.4);
}
.cta-final-button:hover {
  background: var(--accent-2);
  box-shadow: 0 22px 50px rgba(74,139,94,0.5);
}

.cta-final-note {
  margin-top: 2.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;            /* era 0.85 → 15.2px */
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-block: clamp(2.5rem, 5vw, 4rem) 1.75rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.footer-logo {
  display: block;
  height: 96px;
  width: auto;
  /* Logo provavelmente escura — inverte pra branco sobre o ink do footer */
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-sub {
  font-size: 1rem;               /* era 0.85 → 16px */
  color: rgba(255,255,255,0.65);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: flex-end;
}
.footer-nav a {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;               /* era 0.92 → 16px */
  transition: color var(--t-fast) var(--ease-out);
}
.footer-nav a:hover { color: var(--accent-gold); }

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  margin-top: 1rem;
  /* Reserva o canto direito pro botão WhatsApp flutuante */
  padding-right: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;            /* era 0.82 → 15.2px */
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}
.footer-credit {
  font-size: 0.9rem;             /* era 0.78 → 14.4px */
  color: rgba(255,255,255,0.45);
}
.footer-credit a {
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--t-fast) var(--ease-out);
}
.footer-credit a:hover { color: #E2C77F; }
@media (max-width: 960px) {
  .footer-copy {
    align-items: center;
    text-align: center;
    padding-right: 0;
  }
}

/* ============================================================================
   SPLASH — animação de abertura, esconde até hero estar pronto
   ========================================================================== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease-out), visibility 0s linear 0.5s;
  /* Fallback CSS: se o JS não carregar (ex: file://), o splash some sozinho aos 2s */
  animation: splash-auto-dismiss 0.5s ease-out 2s forwards;
  pointer-events: none; /* fix: nao bloqueia cliques durante loading */
}
@keyframes splash-auto-dismiss {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.splash.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  animation: splash-fade-in 0.4s var(--ease-out);
}
@keyframes splash-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.splash-logo {
  width: 96px;
  height: auto;
  animation: splash-pulse 2.4s ease-in-out infinite;
}
@keyframes splash-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.04); }
}
.splash-bar {
  width: 120px;
  height: 1px;
  background: rgba(74, 0, 48, 0.10);
  overflow: hidden;
}
.splash-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  animation: splash-fill 1.4s ease-in-out infinite;
}
@keyframes splash-fill {
  0%   { width: 0; transform: translateX(0); }
  50%  { width: 100%; transform: translateX(0); }
  100% { width: 100%; transform: translateX(100%); }
}

/* ============================================================================
   CURSOR — seta de ouro metalizado — DESATIVADO 2026-06-07
   Cliente preferiu cursor nativo. Bloco preservado pra reativacao futura:
   basta descomentar este bloco + chamada safe('cursor', ...) no script.js
   + bloco <div class="cursor"> no index.html.
   ========================================================================== */
/*
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 0.25s var(--ease-out);
  will-change: transform;
  filter: drop-shadow(0 2px 4px rgba(40, 25, 10, 0.35));
}
.cursor.is-active { opacity: 1; }
.cursor.is-hover .cursor-arrow {
  transform: scale(1.25) rotate(-4deg);
  filter: drop-shadow(0 0 6px rgba(201, 169, 97, 0.55));
}
.cursor.is-press .cursor-arrow {
  transform: scale(0.92);
}
.cursor-arrow {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: 4px 4px;
  transition: transform 0.25s var(--ease-out), filter 0.25s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  html.js-ready body { cursor: none; }
  html.js-ready a,
  html.js-ready button,
  html.js-ready [role="button"],
  html.js-ready input,
  html.js-ready textarea,
  html.js-ready select,
  html.js-ready label { cursor: none; }
  a:focus-visible, button:focus-visible { outline-color: var(--accent-gold); }
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor { display: none; }
  body { cursor: auto; }
}
*/

/* Garante cursor nativo mesmo se algum CSS resquicio tentar esconder */
body, a, button, [role="button"], input, textarea, select, label {
  cursor: auto;
}
a, button, [role="button"], label, .cta-button, .cta-link, .cta-ghost,
.nav-cta, .nav-link, .mobile-nav-link {
  cursor: pointer;
}

/* ============================================================================
   SOCIAL FLOATS — WhatsApp x2 + Instagram (substitui .whatsapp-pill antigo)
   ========================================================================== */
.social-floats {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  border: 2px solid #fff;
  box-shadow:
    0 6px 18px rgba(74, 0, 48, 0.18),
    0 14px 32px rgba(74, 0, 48, 0.10);
  transition:
    transform var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    filter var(--t-base) var(--ease-out);
}
.float-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 10px 24px rgba(74, 0, 48, 0.22),
    0 20px 40px rgba(74, 0, 48, 0.14);
}
.float-btn:active { transform: translateY(0); }
.float-btn svg { display: block; }
.float-btn--wa1 { background: #25D366; }
.float-btn--wa2 { background: var(--accent); }
.float-btn--ig {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent) 100%);
}

@media (max-width: 480px) {
  .social-floats { bottom: 1rem; right: 1rem; gap: 0.55rem; }
  .float-btn { width: 46px; height: 46px; }
  .float-btn svg { width: 22px; height: 22px; }
}
@media (max-width: 360px) {
  .social-floats { bottom: 0.75rem; right: 0.75rem; }
  .float-btn { width: 42px; height: 42px; }
  .float-btn svg { width: 20px; height: 20px; }
}


/* ============================================================================
   DEFENSIVE: sem JS, conteúdo aparece. O kit/primitives aplica opacity:0
   em [data-reveal] sem condicional — esta regra neutraliza quando JS falhou.
   O JS adiciona .js-ready ao <html> ANTES de qualquer reveal.
   ========================================================================== */
html:not(.js-ready) [data-reveal],
html:not(.js-ready) [data-reveal-words] .word-inner,
html:not(.js-ready) [data-reveal-stagger] > * {
  opacity: 1;
  transform: none;
}

/* ============================================================================
   STAGGER REVEAL — children animam em cascata quando o container entra
   ========================================================================== */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
/* Override do data-reveal individual quando estiver dentro de um stagger */
[data-reveal-stagger] [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger].is-visible > *:nth-child(1)  { transition-delay:   0ms; }
[data-reveal-stagger].is-visible > *:nth-child(2)  { transition-delay:  70ms; }
[data-reveal-stagger].is-visible > *:nth-child(3)  { transition-delay: 140ms; }
[data-reveal-stagger].is-visible > *:nth-child(4)  { transition-delay: 210ms; }
[data-reveal-stagger].is-visible > *:nth-child(5)  { transition-delay: 280ms; }
[data-reveal-stagger].is-visible > *:nth-child(6)  { transition-delay: 350ms; }
[data-reveal-stagger].is-visible > *:nth-child(7)  { transition-delay: 420ms; }
[data-reveal-stagger].is-visible > *:nth-child(8)  { transition-delay: 490ms; }
[data-reveal-stagger].is-visible > *:nth-child(9)  { transition-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================================
   ASSINATURA DE ANIMAÇÃO — word-by-word reveal nos H2
   ========================================================================== */
[data-reveal-words] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0;
  padding: 0.08em 0.12em 0.08em 0;
  text-align: left;
}
[data-reveal-words] .word-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  transition:
    opacity var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out);
  transition-delay: calc(var(--i, 0) * 60ms);
  will-change: transform, opacity;
}
[data-reveal-words].is-visible .word-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }

  /* Hero mobile: copy → foto → CTAs (CTAs no fim, depois da foto) */
  .hero {
    min-height: 100vh;
    max-height: none;
    padding-top: clamp(5rem, 14vw, 7rem);
    overflow: hidden;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(280px, 1fr) auto;
    grid-template-areas:
      "copy"
      "figure"
      "ctas";
    min-height: 0;
    height: 100%;
  }
  .hero-grid > .hero-ctas {
    padding: 1.25rem var(--container-px) 1.5rem;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .hero-grid > .hero-ctas .cta-button { width: 100%; max-width: 360px; }
  .hero-copy {
    order: 1;
    margin-left: 0;
    margin-inline: auto;
    max-width: 100%;
    padding: 0 var(--container-px) 1.25rem;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
  }
  .hero-eyebrow {
    margin-bottom: 1.25rem;
    align-self: center;
  }
  .hero-title { margin-bottom: 1rem; }
  .hero-lede,
  .hero-sub {
    margin-inline: auto;
    max-width: 38ch;
  }
  .hero-sub { margin-bottom: 1.5rem; }
  .hero-ctas {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .hero-credential {
    justify-content: center;
    padding-top: 0.85rem;
    margin-top: auto;
  }

  /* Título maior no mobile */
  .t-quiet { font-size: 1.45rem; }
  .t-loud  { font-size: 3.8rem; }

  .hero-figure {
    order: 2;
    min-height: 0;
    aspect-ratio: auto;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: block;
    z-index: 1;
  }
  .hero-figure::after { display: none; }
  /* Picture preenche exatamente a row 40% e a largura total da viewport */
  .hero-figure picture {
    position: absolute;
    inset: 0;
    left: 0; right: 0; top: 0; bottom: 0;
    height: 100%;
    width: 100%;
    display: block;
    z-index: auto;
  }
  .hero-figure picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;    /* mantém topo da cabeça visível, crop nos pés */
    max-width: 100%;
    mix-blend-mode: normal;
    opacity: 1;
  }

  /* Pills no mobile — 2 visíveis, menores, texto em 2 linhas */
  .hero-floats { z-index: 4; }
  .float-pill {
    padding: 0.45rem 0.85rem 0.45rem 0.45rem;
    gap: 0.5rem;
    font-size: 0.72rem;
    white-space: normal;
    align-items: center;
  }
  .float-text {
    display: inline-block;
    line-height: 1.15;
    max-width: 8ch;       /* força quebra em 2 linhas */
  }
  .float-icon { width: 26px; height: 26px; }
  .float-icon svg { width: 12px; height: 12px; }
  /* Pills mobile: no bottom da row da foto, longe do rosto */
  .float-pill-1 {
    top: auto; bottom: 12%; right: 4%; left: auto;
  }
  .float-pill-2 {
    top: auto; bottom: 42%; left: 4%; right: auto;
  }
  .float-pill-3 { display: none; }

  /* Método: pilar fica vertical (num em cima, conteúdo embaixo) */
  .pillar {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-block: 2rem 1.5rem;
  }
  .pillar-content { padding-left: 1rem; }
  .method-watermark { font-size: clamp(6rem, 28vw, 14rem); }

  /* Sintomas header: empilha counter em cima do intro */
  .symptoms-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  .symptoms-grid { grid-template-columns: 1fr; gap: 0.85rem; }

  /* Benefícios bento: vira 2 cols, todos os spans normalizam */
  .benefits-bento { grid-template-columns: repeat(2, 1fr); }
  .benefit-feature,
  .benefit-sleep,
  .benefit-gut,
  .benefit-self { grid-column: span 2; grid-row: auto; }
  .benefit-feature .benefit-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  /* Sobre: stack vertical */
  .about-cinema {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-figure { aspect-ratio: auto; max-height: none; }
  .about-quote-wrap { padding: 2.5rem var(--container-px); }
  .about-columns { grid-template-columns: 1fr; gap: 1rem; }
  .about-foot { flex-direction: column; align-items: stretch; gap: 1.5rem; }
  .about-credentials { justify-content: flex-start; }

  /* Processo: stack vertical, foto em cima, steps embaixo */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .process-figure {
    position: static;
    aspect-ratio: 4 / 3;
    max-width: 380px;
    margin-inline: auto;
  }
  .flow-step {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .flow-step::after { display: none; }
  .flow-content { padding-top: 0; }

  /* Atendimento: stack vertical, mapa em cima, portais embaixo */
  .places-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .places-map {
    min-height: 0;
    height: 320px;                /* altura fixa pra mobile — escala 100% width */
    aspect-ratio: auto;
    width: 100%;
    max-width: 100%;
  }
  .places-map iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 320px;
  }

  /* FAQ: header no topo, lista embaixo */
  .faq-grid { grid-template-columns: 1fr; }
  .faq-header { position: static; }

  /* CTA Final: stack vertical, foto em cima, texto embaixo centralizado */
  .cta-final-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 460px;
  }
  .cta-final-figure {
    aspect-ratio: 4 / 5;
    max-width: 320px;
    margin-inline: auto;
  }
  .cta-final-inner {
    text-align: center;
    max-width: 100%;
  }
  .cta-final-eyebrow { justify-content: center; }
  .cta-final-text { margin-inline: auto; }
  .t-loud-light { margin-inline: auto; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    justify-items: center;
  }
  .footer-brand {
    align-items: center;
    gap: 0.85rem;
  }
  .footer-logo { height: 72px; }
  .footer-nav { justify-content: center; }
  .footer-copy { padding-top: 1.25rem; }
}

/* ═══ Mobile pequeno < 480px (iPhone SE, telas estreitas) ═════════ */
@media (max-width: 480px) {
  :root {
    --container-px: 1rem;
    --section-py: clamp(3rem, 9vw, 5rem);
  }

  /* Título do hero — escala mobile pequeno (mantém legível 45+) */
  .t-quiet { font-size: 1.25rem; }
  .t-loud  { font-size: 3rem; }

  .hero-lede { font-size: 1rem; line-height: 1.55; }    /* 16px (era 14px) */
  .hero-sub  { font-size: 0.95rem; line-height: 1.55; } /* 15.2px (era 13px) */

  /* Pills mais compactas em telas estreitas */
  .float-pill {
    padding: 0.35rem 0.7rem 0.35rem 0.35rem;
    font-size: 0.68rem;
    gap: 0.4rem;
  }
  .float-icon { width: 22px; height: 22px; }
  .float-icon svg { width: 10px; height: 10px; }
  .float-text { max-width: 7ch; line-height: 1.1; }
  .float-pill-1 { bottom: 10%; right: 3%; }
  .float-pill-2 { bottom: 38%; left: 3%; }

  /* Section header & títulos */
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .method-loud,
  .t-loud-light { font-size: clamp(2.2rem, 9vw, 3rem); }
  .counter-num  { font-size: clamp(3.5rem, 18vw, 5rem); }

  /* Sobre quote menor */
  .about-quote { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* CTA Final figure não vaza */
  .cta-final-figure { max-width: 280px; }

  /* WhatsApp pill ainda mais compacto */
  .whatsapp-pill {
    bottom: 0.85rem;
    right: 0.85rem;
    padding: 0.35rem 0.45rem 0.35rem 0.35rem;
  }
  .pill-avatar { width: 36px; height: 36px; }
  .pill-icon svg { width: 16px; height: 16px; }

  /* CTA large compacto pra caber em telas estreitas (375px) */
  .cta-large {
    padding: 1rem 1.4rem;
    font-size: 0.98rem;
  }
}

@media (max-width: 560px) {
  /* Sintomas em 1 coluna (legibilidade > densidade) */
  .symptoms-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .symptom-card {
    padding: 1.25rem 1.1rem 1.15rem;
    border-radius: 14px;
  }
  .symptom-num {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .symptom-text {
    font-size: 1.02rem;
    line-height: 1.5;
  }
  .symptom-text strong { font-weight: 500; }

  .benefits-bento { grid-template-columns: 1fr; }
  .benefit-feature,
  .benefit-sleep,
  .benefit-gut,
  .benefit-self { grid-column: span 1; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .cta-button { justify-content: center; text-align: center; }
  /* WhatsApp em mobile colapsa pra avatar + ícone (sem texto) */
  .whatsapp-pill {
    padding: 0.4rem 0.55rem 0.4rem 0.4rem;
    gap: 0.4rem;
    bottom: 1rem;
    right: 1rem;
  }
  .whatsapp-pill .pill-content { display: none; }
  .pill-avatar { width: 38px; height: 38px; font-size: 1rem; }
  .pill-icon svg { width: 18px; height: 18px; }
  .brand-logo { height: 32px; }

  .about-credentials {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .about-credentials li:not(:last-child)::after { display: none; }
  .about-credentials li { padding-right: 0; }

  .faq-question { grid-template-columns: auto 1fr auto; gap: 0.75rem; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE FIXES — mobile completo (320-414px) + touch targets + overflow
   Aplicado em 2026-06-02
   ════════════════════════════════════════════════════════════════ */

/* Bloqueia overflow horizontal global */
html, body { overflow-x: hidden; max-width: 100%; }

/* Hero figure: não vaza viewport em mobile */
@media (max-width: 960px) {
  .hero-figure,
  .hero-figure picture,
  .hero-figure picture img { max-width: 100%; }
}

/* Touch targets >= 44px (WCAG 2.5.5) */
.nav-toggle {
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .whatsapp-pill {
    min-height: 44px;
    padding: 0.5rem 0.65rem 0.5rem 0.5rem;
  }
  .whatsapp-pill .pill-avatar { width: 36px; height: 36px; }
}

/* CTA: garantir wrap + center alignment em mobile pequeno */
@media (max-width: 414px) {
  .cta-button {
    white-space: normal;
    text-align: center;
    word-break: break-word;
    line-height: 1.3;
  }
  .cta-button > span { text-wrap: balance; }
  .hero-ctas .cta-button { width: 100%; max-width: 360px; }
}

/* Mobile pequeno (320-360px) — container mais apertado e tipografia menor */
@media (max-width: 360px) {
  :root { --container-px: 0.9rem; }
  .t-loud { word-break: break-word; }
  .marquee-track { font-size: clamp(1.6rem, 5vw, 3rem); }
}

/* About columns: drop cap atrapalha em mobile */
@media (max-width: 640px) {
  .about-columns p:first-child::first-letter { font-size: 1em; float: none; padding: 0; line-height: inherit; }
}

/* Symptoms/benefits: força 1 col em < 600px (limpa breakpoints sobrepostos) */
@media (max-width: 600px) {
  .symptoms-grid,
  .benefits-bento { grid-template-columns: 1fr; gap: 0.85rem; }
  .benefit-feature { grid-column: span 1; grid-row: auto; }
}

/* FAQ: gap menor + padding inline pra caber em 360px */
@media (max-width: 414px) {
  .faq-question {
    gap: 0.6rem;
    padding-inline: 0.15rem;
    font-size: 1rem;
  }
  .faq-q-text { font-size: 1rem; line-height: 1.25; }
  .faq-answer p { padding-left: 1.5rem; }
}

/* SVG ícones dentro de CTAs proporcionais ao texto */
@media (max-width: 414px) {
  .cta-button svg {
    width: clamp(14px, 4vw, 18px);
    height: clamp(14px, 4vw, 18px);
  }
}

/* Tipografia mobile pequeno — clamps realistas pra 320-360px */
@media (max-width: 360px) {
  .symptom-text { font-size: 0.95rem; }
  .benefit-title { font-size: clamp(1.1rem, 4.5vw, 1.35rem); line-height: 1.2; }
  .benefit-text { font-size: 0.95rem; }
  .about-quote { font-size: clamp(1.5rem, 5vw, 2rem); line-height: 1.18; }
  .about-columns p { font-size: 1rem; }
  .counter-num { font-size: clamp(2.8rem, 16vw, 4rem); }
  .flow-title { font-size: clamp(1.3rem, 5vw, 1.7rem); }
  .flow-eyebrow { font-size: 0.78rem; letter-spacing: 0.08em; }
  .cred-detail { font-size: 0.78rem; }
}

/* CTA final / headings light com max-width responsivo */
.cta-final-title .t-loud-light,
.t-loud-light { max-width: min(18ch, 95vw); }

/* Float pills do hero — não vazam em 320px */
@media (max-width: 360px) {
  .float-pill-1 { bottom: max(6%, 0.75rem); }
  .float-pill-2 { bottom: max(32%, 0.5rem); }
}

/* WhatsApp pill em 320px — mais perto do canto sem encostar */
@media (max-width: 360px) {
  .whatsapp-pill { bottom: 0.75rem; right: 0.75rem; }
}

/* Footer copy: tirar padding-right reservado pro pill em mobile pequeno */
@media (max-width: 414px) {
  .footer-copy { padding-right: 0; }
}

/* ═══════ AUDIT MANUAL 2026-06-02 — fixes calculados em pixel ═══════
   Hero em iPhone SE 1ª gen (320×568) corta conteúdo por causa de
   min-height:100vh + overflow:hidden. Em mobile pequeno tira essa trava
   e libera o flow vertical normal.                                  */
@media (max-width: 480px) {
  .hero {
    min-height: auto;
    max-height: none;
    overflow: visible;
  }
  .hero-grid {
    grid-template-rows: auto auto auto;
    height: auto;
  }
  .hero-figure {
    min-height: clamp(280px, 60vw, 380px);
  }
}

/* t-loud em mobile pequeno: 3.8rem fixo (line 2133) estoura 320px com
   "Sozinha" (7 chars). Reduz com clamp realista. */
@media (max-width: 360px) {
  .t-loud { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .method-loud { font-size: clamp(2.2rem, 10vw, 3rem); }
}

/* CTAs avulsos (fora do hero) tambem precisam ocupar largura em
   mobile pequeno — sintomas, metodo, sobre, atendimento. Sem essa
   regra, botoes com texto longo ('Quero esse cuidado personalizado')
   vazam em 320 viewport. */
@media (max-width: 480px) {
  .symptoms-conclusion .cta-button,
  .method-cta .cta-button,
  .about-foot .cta-button {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    justify-content: center;
  }
  .symptoms-conclusion,
  .method-cta { display: flex; flex-direction: column; align-items: center; }
}

/* FAQ q-text: em 320 com gap 16px + num 0.85rem + icon 14px sobra
   ~223px pra texto. clamp atual da 17.6px em 320 — pode quebrar
   palavras longas como 'compromisso/aprofundada'. Habilita break. */
@media (max-width: 360px) {
  .faq-q-text {
    font-size: 0.98rem;
    word-break: break-word;
    hyphens: auto;
  }
  .faq-answer p { padding-left: 1.25rem; padding-right: 0.25rem; font-size: 1rem; }
}


/* Print sane defaults */
@media print {
  .nav-wrapper, .whatsapp-float, .mobile-menu, .cta-button, .cta-ghost { display: none !important; }
  body { color: #000; background: #fff; }
}

/* ════════════════════════════════════════════════════════════════
   MOBILE AUDIT FIXES (hm-team /hm-team 2026-06-22)
   ════════════════════════════════════════════════════════════════ */

h1, h2, h3,
.section-title, .hero-title, .t-loud, .t-quiet,
.method-loud, .method-quiet,
.about-title, .portal-title, .cta-final-title {
  text-wrap: pretty;
}

/* Remove traços laterais decorativos (causavam desalinhamento) */
.label-line, .eyebrow-line { display: none !important; }
.section-label, .hero-eyebrow { gap: 0; padding-left: 0; }
/* Divisor sutil entre seções como substituto visual */
.section-label::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent-gold);
  margin: 0 auto 0.85rem;
  border-radius: 999px;
}
.section-header:not(.section-header-center) .section-label::before {
  margin-left: 0;
  margin-right: auto;
}

/* Remove word-break agressivo no t-loud (causava letras isoladas em 320px) */
.t-loud { word-break: normal; hyphens: auto; }

@media (max-width: 560px) {
  .symptom-card { padding: 1rem 0.9rem; }
  .pillar-num { font-size: clamp(3rem, 9vw, 4.5rem); }
  .about-credentials li:not(:last-child)::after { display: none; }
}

@media (max-width: 414px) {
  .cta-button { white-space: normal; line-height: 1.25; padding: 0.95rem 1.3rem; }
  .faq-question { padding-inline: 0.75rem; }
  .symptom-num { font-size: clamp(1.6rem, 6vw, 1.9rem); }
  .counter-num { font-size: clamp(2.6rem, 14vw, 3.6rem); }
}

@media (max-width: 360px) {
  .pillar-num { font-size: clamp(2.6rem, 8vw, 3.4rem); }
  .marquee-track { font-size: clamp(1.3rem, 4.2vw, 2rem); }
  .marquee-track { -webkit-text-stroke-width: 0.5px; }
  .about-quote { font-size: clamp(1.3rem, 6vw, 1.65rem); line-height: 1.3; }
  .benefit-text { font-size: 1rem; }
  .float-text { max-width: 9ch; }
  .cta-final-title .t-loud-light { max-width: min(16ch, 90vw); }
}


/* SEM-TRACO-SECTION-LABEL */
/* ===== Removido a pedido: nenhum traço/linha antes dos rótulos de seção ===== */
.section-label::before,
.eyebrow::before { content: none !important; display: none !important; }
.section-label .label-line,
.eyebrow .label-line { display: none !important; }
