/* ===========================================================
   Filhas Restauradas — Design System
   Berry profundo + âmbar vivo. Tom: firmeza espiritual, calor,
   autoridade. Psicologia de cor: verde = avanço/oferta,
   vermelho = alerta/urgência, âmbar = valor.
   Motion: cubic-bezier(0.16, 1, 0.3, 1) — snappy, premium.
=========================================================== */

:root {
  /* Marca — berry profundo (deslocado do vinho puro da referência) */
  --wine-950: #1f0616;
  --wine-900: #340a24;
  --wine-800: #4a1030;
  --wine-700: #63163f;
  --wine-600: #7e1d4d;
  --wine-bright: #a8285f;

  --gold: #e0a339;
  --gold-soft: #f2c869;
  --gold-dim: #a3761f;
  --gold-foreground: #2b1c05;

  /* Superfícies claras */
  --paper: #fbf5ef;
  --paper-alt: #f3e6da;
  --ink: #271119;
  --ink-soft: #6f5964;

  --border-light: rgba(52, 10, 36, 0.12);
  --border-dark: rgba(224, 163, 57, 0.24);

  /* Psicologia de cor: verde = ação/avanço/valor, vermelho = alerta/urgência */
  --green: #1f9d55;
  --green-bright: #2fbd68;
  --green-dark: #157a3f;
  --green-soft: #e6f6ec;
  --red: #d23f3f;
  --red-dark: #a52c2c;
  --red-soft: #fbeaea;

  --whatsapp-green: #25d366;
  --whatsapp-green-dark: #1da851;

  --radius-xl: 2.5rem;
  --radius-lg: 1.75rem;
  --radius-md: 1.1rem;
  --radius-sm: 0.65rem;
  --radius-full: 999px;

  --font-serif: 'Fraunces', serif;
  --font-display: 'Anton', 'Inter', sans-serif;
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;

  --glow-gold: 0 0 50px rgba(224, 163, 57, 0.28);
  --glow-green: 0 0 40px rgba(47, 189, 104, 0.35);
  --shadow-soft: 0 24px 60px -22px rgba(31, 6, 22, 0.55);
  --shadow-card: 0 10px 30px -12px rgba(31, 6, 22, 0.35);

  --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-reveal: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  touch-action: pan-y;
  overscroll-behavior-x: none;
  position: relative;
}

/* Noise overlay sutil (textura "analógica") */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===========================================================
   Hierarquia tipográfica
   Display (h1 hero) > Section title (h2) > Card title (h3/h4)
   > Sub-headline (.sub / .section-head p) > Body > Micro-label
=========================================================== */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; }

h1 {
  font-size: clamp(2.35rem, 6vw, 4.1rem);
  font-weight: 800;
}

h2 { font-weight: 700; }

h3 { font-weight: 600; }

.micro-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.section--dark .micro-label { color: var(--gold-soft); }

/* Palavra-chave de destaque dentro de títulos: itálico + cor de marca */
h1 .hl, h2 .hl, h3 .hl, .lede .hl {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 700;
}

.section--dark h1 .hl,
.section--dark h2 .hl,
.section--dark h3 .hl { color: var(--gold-soft); }

h1 .hl--wine, h2 .hl--wine, h3 .hl--wine {
  font-style: italic;
  color: var(--wine-bright);
  font-weight: 700;
}

h1 .hl--green, h2 .hl--green, h3 .hl--green,
.lede .hl--green {
  font-style: italic;
  color: var(--green-bright);
  font-weight: 700;
}

.section {
  padding: 5.5rem 0;
}

.section--dark {
  background: linear-gradient(180deg, var(--wine-950), var(--wine-900) 60%, var(--wine-800));
  color: #f3e9db;
  position: relative;
}

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

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  color: var(--wine-900);
}

.section--dark .section-head h2 { color: #fbf1de; }

.section-head p {
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  font-weight: 400;
}

.section--dark .section-head p { color: rgba(243, 233, 219, 0.78); }

/* ---------- Textura de fundo (grid sutil) ---------- */
.texture-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 75, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 75, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
  pointer-events: none;
}

.texture-grid--light {
  background-image:
    linear-gradient(rgba(52, 10, 36, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 10, 36, 0.05) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 85%);
}

.glow-radial {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.22), transparent 65%);
  pointer-events: none;
  filter: blur(10px);
}

.section--texture {
  position: relative;
  overflow: hidden;
}

.section--texture::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 50vw;
  height: 50vw;
  max-width: 560px;
  max-height: 560px;
  background: radial-gradient(circle, rgba(168, 40, 95, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section--texture .container { position: relative; z-index: 1; }

/* ---------- Barra de urgência ---------- */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--wine-950), var(--wine-700) 50%, var(--wine-950));
  color: #fbf1de;
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 6px 20px -8px rgba(15, 3, 9, 0.55), inset 0 -1px 0 rgba(224, 163, 57, 0.12);
}

.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  flex-wrap: wrap;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
  animation: urgency-pulse 1.8s ease-in-out infinite;
}

@keyframes urgency-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 196, 124, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(224, 196, 124, 0); }
}

.urgency-sep {
  color: rgba(251, 241, 222, 0.35);
  font-weight: 400;
}

.urgency-timer {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--gold-soft);
}

/* ---------- Botões ---------- */
/* CTA principal: verde, relevo tipo Apple (highlight interno + sombra
   profunda), pulso contínuo. Psicologia: verde = permissão para avançar. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: transform 0.25s var(--ease-snap), box-shadow 0.25s var(--ease-snap), filter 0.2s ease;
}

.btn:active { transform: scale(0.97) translateY(1px); }

.btn--gold {
  background: linear-gradient(180deg, var(--green-bright) 0%, var(--green) 55%, var(--green-dark) 100%);
  color: #fff;
  padding: 1.1rem 2.1rem;
  font-size: 1.02rem;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.15),
    0 10px 24px -8px rgba(21, 122, 63, 0.55),
    0 0 0 0 rgba(47, 189, 104, 0.5);
  animation: cta-pulse 2.6s ease-in-out infinite;
  text-align: center;
  line-height: 1.3;
}

.btn--gold:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -2px 4px rgba(0, 0, 0, 0.15),
      0 10px 24px -8px rgba(21, 122, 63, 0.55),
      0 0 0 0 rgba(47, 189, 104, 0.45);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -2px 4px rgba(0, 0, 0, 0.15),
      0 10px 24px -8px rgba(21, 122, 63, 0.55),
      0 0 0 14px rgba(47, 189, 104, 0);
  }
}

.btn--block { width: 100%; }

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.section--dark .trust-row { color: rgba(243, 233, 219, 0.78); }

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.trust-row svg { color: var(--gold-soft); flex-shrink: 0; }

/* Checkmarks de confiança — verde neon, padrão único em toda a página */
.check {
  font-style: normal;
  color: var(--green-bright);
  text-shadow: 0 0 8px rgba(47, 189, 104, 0.55);
  font-weight: 800;
}

/* ---------- Faixa de sigilo (ticker infinito, full-bleed, linha única) ---------- */
.sigilo-ticker {
  position: relative;
  width: 100%;
  margin-top: 3.5rem;
  padding: 1.1rem 0;
  background: linear-gradient(90deg, rgba(224, 163, 57, 0.07), rgba(224, 163, 57, 0.13) 50%, rgba(224, 163, 57, 0.07));
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.sigilo-ticker__track {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: max-content;
  white-space: nowrap;
  animation: ticker-x 38s linear infinite;
}

.sigilo-ticker:hover .sigilo-ticker__track { animation-play-state: paused; }

@keyframes ticker-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sigilo-ticker__item {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(243, 233, 219, 0.82);
}

.sigilo-ticker__item em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--gold-soft);
}

.sigilo-ticker__dot {
  color: var(--gold-dim);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  padding: 4.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero .micro-label {
  justify-content: center;
  width: 100%;
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-size: clamp(2.15rem, 5.4vw, 3.4rem);
  color: #fbf1de;
}

.hero .sub {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(243, 233, 219, 0.85);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero .sub:first-of-type {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  font-weight: 600;
  color: #fbf1de;
  line-height: 1.45;
}

.hero .sub strong { color: var(--gold-soft); }

.video-nudge {
  margin: 1.1rem auto 0;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: clamp(0.72rem, 2.6vw, 0.95rem);
  color: #fbf1de;
  text-align: center;
  max-width: 720px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.5rem;
}

/* ---------- Área de vídeo (placeholder) ---------- */
.media-frame {
  position: relative;
  margin: 2.5rem auto 0;
  max-width: 720px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  background: linear-gradient(160deg, var(--wine-800), var(--wine-950));
  box-shadow: var(--shadow-soft);
}

.media-frame__ratio {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(243, 233, 219, 0.55);
  position: relative;
}

.media-frame__ratio svg { width: 52px; height: 52px; opacity: 0.7; }

.media-frame__label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- Player "ao vivo" (YouTube sem chrome + overlay de sala) ----------
   O arquivo de origem tem pillarbox preto nativo (barras nas laterais do
   conteúdo). O frame fica 16:9 (sem sobra do nosso CSS) e o iframe recebe um
   zoom calibrado para empurrar essas barras pretas para fora da área visível,
   cobrindo 100% do frame com o conteúdo central sempre inteiro. */
.media-frame__ratio--video { color: transparent; }

.media-frame__ratio--video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  /* pointer-events habilitado: o toque precisa alcançar o player para o
     navegador liberar autoplay/som no mobile (gesto de interação real).
     Os controles=0 na URL já escondem toda a UI nativa do YouTube. */
  transform: scale(1.8);
}

/* Corta qualquer resquício de UI do YouTube (título/canal no canto, watermark) */
.live-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(31, 6, 22, 0.4) 0%, transparent 22%, transparent 68%, rgba(15, 3, 9, 0.6) 100%);
}

.live-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(15, 3, 9, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
}

.live-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e5484d;
  animation: urgency-pulse 1.6s ease-in-out infinite;
}

.live-viewers {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 3, 9, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem 0.3rem 0.3rem;
  border-radius: var(--radius-full);
}

.live-viewers__avatars { display: flex; }

.live-viewers__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold-foreground);
  background: linear-gradient(135deg, var(--gold-soft), var(--wine-600));
  border: 1.5px solid rgba(15, 3, 9, 0.8);
  margin-left: -6px;
}

.live-viewers__avatar:first-child { margin-left: 0; }

.live-viewers strong { color: var(--gold-soft); font-weight: 800; }

.live-controls {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.live-controls__btn {
  position: relative;
  z-index: 4;
  pointer-events: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 3, 9, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s var(--ease-snap), background 0.2s ease;
}

.live-controls__btn:hover { background: rgba(15, 3, 9, 0.9); transform: translateY(-1px); }
.live-controls__btn:active { transform: scale(0.94); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance, 40px));
  transition: opacity var(--reveal-duration, 0.7s) var(--ease-reveal), transform var(--reveal-duration, 0.7s) var(--ease-reveal);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  will-change: auto;
}

.reveal--down { transform: translateY(calc(-1 * var(--reveal-distance, 40px))); }
.reveal--left { transform: translateX(calc(-1 * var(--reveal-distance, 40px))); }
.reveal--right { transform: translateX(var(--reveal-distance, 40px)); }
.reveal--none { transform: none; }

/* ---------- Você se reconhece / storytelling ---------- */
.story-block {
  max-width: 760px;
  margin: 0 auto;
}

.story-block p {
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.story-block p.lede {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--wine-900);
}

.story-block strong.callout {
  color: var(--wine-bright);
  font-style: italic;
}

.story-block .final-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--wine-900);
  border-left: 3px solid var(--gold);
  padding-left: 1.1rem;
  margin-top: 1.5rem;
}

.section--dark .story-block p { color: rgba(243, 233, 219, 0.88); }
.section--dark .story-block p.lede { color: #fbf1de; }
.section--dark .story-block strong.callout { color: var(--gold-soft); }
.section--dark .story-block .final-line { color: #fbf1de; border-left-color: var(--gold-soft); }

/* ---------- Antes/Depois ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .compare-grid { grid-template-columns: 1fr 1fr; }
}

.compare-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-snap), box-shadow 0.3s var(--ease-snap);
}

.compare-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -14px rgba(31, 6, 22, 0.4);
}

.compare-card--bad {
  background: var(--red-soft);
  border-color: rgba(165, 52, 52, 0.18);
}

.compare-card--good {
  background: var(--green-soft);
  border-color: rgba(63, 122, 78, 0.2);
}

.compare-card h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.compare-card--bad h3 { color: var(--red); }
.compare-card--good h3 { color: var(--green); }

.compare-list { list-style: none; display: flex; flex-direction: column; gap: 0.95rem; }

.compare-list li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.compare-list .mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.compare-card--bad .mark { background: rgba(210, 63, 63, 0.14); color: var(--red); }
.compare-card--good .mark {
  background: rgba(47, 189, 104, 0.16);
  color: var(--green-bright);
  text-shadow: 0 0 8px rgba(47, 189, 104, 0.5);
}

.compare-list strong { display: block; color: var(--ink); }

/* ---------- Lista de problemas (X) ---------- */
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; max-width: 760px; margin: 0 auto; }

.problem-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
}

.problem-list .mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(210, 63, 63, 0.18);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Cards de método ---------- */
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .method-grid { grid-template-columns: repeat(3, 1fr); }
}

.method-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  backdrop-filter: blur(6px);
}

.method-card .num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}

.method-card h3 {
  font-size: 1.2rem;
  color: #fbf1de;
  margin-bottom: 0.5rem;
}

.method-card > p {
  font-size: 0.9rem;
  color: rgba(243, 233, 219, 0.72);
  margin-bottom: 1.1rem;
}

.method-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }

.method-card ul li {
  font-size: 0.87rem;
  color: rgba(243, 233, 219, 0.88);
  display: flex;
  gap: 0.6rem;
  line-height: 1.55;
}

.method-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  margin-top: 0.55rem;
}

.method-card ul li em {
  font-style: normal;
  color: rgba(242, 200, 105, 0.8);
  font-size: 0.92em;
}

/* ---------- Timeline (Como funciona) ---------- */
.timeline {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.timeline-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-snap), box-shadow 0.3s var(--ease-snap);
}

.timeline-item:hover {
  transform: translateY(-3px) translateX(2px);
  box-shadow: 0 16px 32px -14px rgba(31, 6, 22, 0.3);
}

.timeline-dot {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--wine-800), var(--wine-950));
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px -4px rgba(31, 6, 22, 0.5), inset 0 1px 0 rgba(242, 200, 105, 0.2);
  margin-top: 0.1rem;
}

.timeline-content h4 { font-size: 1rem; color: var(--wine-900); margin-bottom: 0.3rem; }
.timeline-content p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- O que muda na prática ---------- */
.progress-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .progress-grid { grid-template-columns: repeat(4, 1fr); }
}

.progress-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--wine-bright);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-snap), box-shadow 0.3s var(--ease-snap);
}

.progress-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -14px rgba(31, 6, 22, 0.35);
}

.progress-grid > .progress-card:nth-child(1) { border-top-color: var(--gold-dim); }
.progress-grid > .progress-card:nth-child(2) { border-top-color: var(--gold); }
.progress-grid > .progress-card:nth-child(3) { border-top-color: var(--wine-bright); }
.progress-grid > .progress-card:nth-child(4) { border-top-color: var(--green-bright); }

.progress-card .tag {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--wine-bright);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.progress-card p { font-size: 0.83rem; color: var(--ink-soft); }

/* ---------- A criadora ---------- */
.founder { overflow: hidden; }

.founder__glow {
  top: 10%;
  width: 50vw;
  height: 50vw;
  max-width: 560px;
  max-height: 560px;
  background: radial-gradient(circle, rgba(168, 40, 95, 0.18), transparent 65%);
}

.founder__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 860px) {
  .founder__grid { grid-template-columns: 300px 1fr; gap: 3.5rem; }
}

.founder__portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder__frame {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  color: rgba(243, 233, 219, 0.5);
  background: linear-gradient(160deg, var(--wine-800), var(--wine-950));
  border: 2px solid var(--border-dark);
  box-shadow: 0 0 0 8px rgba(224, 163, 57, 0.06), var(--shadow-soft);
  animation: founder-float 6s ease-in-out infinite;
}

@keyframes founder-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.founder__frame svg { width: 56px; height: 56px; opacity: 0.6; }

.founder__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.founder__frame-label {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Wrap sem overflow: permite o badge "vazar" para fora da moldura da foto */
.founder__frame-wrap {
  position: relative;
  display: inline-block;
}

/* Retrato real: proporção retrato, moldura neon dourada sutil */
.founder__frame--photo {
  width: min(260px, 72vw);
  height: auto;
  aspect-ratio: 640 / 1138;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(224, 163, 57, 0.5);
  box-shadow:
    0 0 0 1px rgba(224, 163, 57, 0.15),
    0 0 26px rgba(224, 163, 57, 0.28),
    0 0 54px rgba(168, 40, 95, 0.22),
    var(--shadow-soft);
}

.founder__frame--photo img { position: static; border-radius: calc(var(--radius-xl) - 1px); }

.founder__badge {
  position: absolute;
  bottom: -1rem;
  right: -1.4rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--wine-900), var(--wine-950));
  border: 1px solid var(--gold-soft);
  box-shadow: 0 0 18px rgba(242, 200, 105, 0.4), var(--shadow-card);
  white-space: nowrap;
}

.founder__badge-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.founder__badge-count {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: #fbf1de;
  text-shadow: 0 0 10px rgba(242, 200, 105, 0.5);
}

.founder__badge-count::before { content: '+'; }

.founder__name {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fbf1de;
}

.founder__role {
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: var(--gold-soft);
  font-weight: 600;
}

.founder__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  box-shadow: 0 8px 20px -8px rgba(214, 41, 118, 0.5);
  transition: transform 0.25s var(--ease-snap), box-shadow 0.25s var(--ease-snap);
}

.founder__instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(214, 41, 118, 0.6);
}

.founder__bio { max-width: 100%; }

/* ---------- Depoimentos (marquee) ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.marquee__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-x 42s linear infinite;
}

.marquee__track--shots { animation-duration: 70s; }

.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marquee-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Prints reais de depoimentos (carrossel) ---------- */
.shot-card {
  flex-shrink: 0;
  width: 240px;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  background: var(--wine-950);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-snap), box-shadow 0.3s var(--ease-snap);
}

.shot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(15, 3, 9, 0.55);
}

.shot-card__scroll {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.shot-card__scroll::-webkit-scrollbar { display: none; }

.shot-card__scroll img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Fit-grid (pra quem é) ---------- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .fit-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Mockups da oferta ---------- */
.offer-hero {
  max-width: 880px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}

.offer-hero img { width: 100%; height: auto; display: block; }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .offer-grid { grid-template-columns: 1fr 1fr; }
}

.offer-card {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-snap), box-shadow 0.3s var(--ease-snap);
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -14px rgba(31, 6, 22, 0.32);
}

.offer-card--plain { align-items: flex-start; }

.offer-card__body h4 {
  font-size: 1rem;
  color: var(--wine-900);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.offer-card__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  background: rgba(224, 163, 57, 0.12);
  border: 1px solid var(--border-light);
}

.offer-card__body p { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.5rem; }
.offer-card__body p em { font-style: normal; color: var(--wine-bright); font-weight: 500; }
.offer-card__value { font-size: 0.85rem; font-weight: 700; color: var(--red-dark); }

.offer-total {
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--ink-soft);
}

.offer-total strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--red-dark);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  margin-left: 0.4rem;
}

/* ---------- Investimento / Pricing ---------- */
.price-card {
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(165deg, var(--wine-900), var(--wine-950));
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.price-card__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--gold-foreground);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.price-card h3 { color: #fbf1de; font-size: 1.15rem; margin-bottom: 1.5rem; font-weight: 500; }

.price-card .price-main {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.9rem;
  color: var(--green-bright);
  text-shadow: 0 0 30px rgba(47, 189, 104, 0.35);
}

.price-card .price-sub {
  font-size: 0.9rem;
  color: rgba(243, 233, 219, 0.7);
  margin-top: 0.3rem;
  margin-bottom: 1.75rem;
}

.price-card .trust-row { margin-bottom: 1.75rem; }

.price-footnote {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.section--dark .price-footnote { color: rgba(243, 233, 219, 0.65); }

/* Prova social logo após o preço — reforço de confiança no momento da decisão */
.post-price-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(243, 233, 219, 0.85);
}

.post-price-social em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 700;
}

/* ---------- Garantia ---------- */
.guarantee {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.guarantee-badge {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-foreground);
  box-shadow: var(--glow-gold);
  flex-shrink: 0;
}

.guarantee-badge svg { width: 44px; height: 44px; }

.guarantee h2 { font-size: 1.6rem; color: var(--wine-900); }

.guarantee p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s var(--ease-snap), border-color 0.3s var(--ease-snap);
}

.faq-item.is-open {
  border-color: var(--border-dark);
  box-shadow: 0 14px 30px -14px rgba(31, 6, 22, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--wine-900);
}

.faq-question .chev {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gold-dim);
}

.faq-item.is-open .faq-question .chev { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer__inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---------- Dois caminhos ---------- */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 800px) {
  .paths-grid { grid-template-columns: 1fr 1fr; }
}

.path-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s var(--ease-snap);
}

.path-card:hover { transform: translateY(-3px); }

.path-card--stay {
  background: linear-gradient(160deg, rgba(210, 63, 63, 0.14), rgba(210, 63, 63, 0.04));
  border-color: rgba(210, 63, 63, 0.28);
}

.path-card--go {
  background: linear-gradient(160deg, rgba(224, 163, 57, 0.16), rgba(224, 163, 57, 0.05));
  border-color: var(--border-dark);
}

.path-card h3 { font-size: 1.1rem; margin-bottom: 1rem; color: #fbf1de; }
.path-card p { font-size: 0.92rem; color: rgba(243, 233, 219, 0.82); line-height: 1.65; }

.final-quote {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.final-quote p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fbf1de;
  line-height: 1.6;
}

.final-quote p.signature {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(243, 233, 219, 0.75);
  margin-top: 1rem;
  font-family: var(--font-sans);
}

/* ---------- WhatsApp: seção de dúvidas + botão flutuante ---------- */
.whatsapp-cta__card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3rem 2.25rem;
  box-shadow: var(--shadow-card);
}

.whatsapp-cta__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(160deg, var(--whatsapp-green), var(--whatsapp-green-dark));
  box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.5);
}

.whatsapp-cta__card h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--wine-900);
  margin-bottom: 0.9rem;
}

.whatsapp-cta__card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.btn--whatsapp {
  background: linear-gradient(180deg, var(--whatsapp-green) 0%, var(--whatsapp-green-dark) 100%);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 0.98rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 4px rgba(0, 0, 0, 0.12),
    0 10px 24px -8px rgba(29, 168, 81, 0.5);
}

.btn--whatsapp:hover { filter: brightness(1.05); transform: translateY(-2px); }

/* Botão flutuante fixo */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(160deg, var(--whatsapp-green), var(--whatsapp-green-dark));
  box-shadow: 0 8px 24px -6px rgba(29, 168, 81, 0.55);
  animation: whatsapp-float-bob 3.2s ease-in-out infinite;
  transition: transform 0.25s var(--ease-snap), box-shadow 0.25s var(--ease-snap);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px -6px rgba(29, 168, 81, 0.65);
}

@keyframes whatsapp-float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 640px) {
  .whatsapp-float { right: 1rem; bottom: 1rem; width: 52px; height: 52px; }
  .whatsapp-cta__card { padding: 2.25rem 1.5rem; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--wine-950);
  color: rgba(243, 233, 219, 0.55);
  text-align: center;
  padding: 2rem 0;
  font-size: 0.8rem;
}

/* ---------- Utilities ---------- */
.mt-lg { margin-top: 3rem; }
.text-center { text-align: center; }

/* Divisor decorativo entre blocos densos de texto — quebra o ritmo de
   leitura sem adicionar nem cortar copy. */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 320px;
  margin: 2.75rem auto;
}

.section-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

.section-divider__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  background: rgba(224, 163, 57, 0.08);
  border: 1px solid var(--border-dark);
}

@media (max-width: 640px) {
  .section { padding: 3.25rem 0; }
  .shot-card { width: 200px; height: 360px; }
  .marquee__track--shots { animation-duration: 55s; }

  .media-frame { margin-left: 1.25rem; margin-right: 1.25rem; }
  .live-badge { top: 0.6rem; left: 0.6rem; font-size: 0.62rem; padding: 0.3rem 0.6rem; }
  .live-viewers { top: 0.6rem; right: 0.6rem; font-size: 0.65rem; padding: 0.25rem 0.55rem 0.25rem 0.25rem; }
  .live-viewers__avatar { width: 17px; height: 17px; font-size: 0.52rem; }

  /* No mobile os controles customizados de play/som somem: o toque na tela
     já dá acesso ao volume físico do aparelho, e o vídeo toca livre sem
     overlay de botões poluindo a experiência. */
  .live-controls { display: none; }
}

@media (max-width: 420px) {
  .live-viewers span:last-child { display: none; }
  .live-viewers { padding: 0.3rem; }
}

/* iPhone SE e telas estreitas: compacta o topo do hero */
@media (max-width: 380px) {
  .hero { padding: 2.75rem 0 3rem; }
  .hero .micro-label { margin-bottom: 1rem; font-size: 0.62rem; }
  .hero h1 { font-size: 1.85rem; }
  .hero .sub:first-of-type { font-size: 1.05rem; margin-top: 1.1rem; }
}
