/* ==========================================================
   Protocolo Bolo Lucrativo — Landing Page
   Dark Mode (VSL) -> Light Mode (pitch)
   ========================================================== */

:root {
  --font-main: 'Poppins', sans-serif;
  --font-script: 'Handlee', cursive;

  /* Brand */
  --pink: #ff3d6e;
  --pink-dark: #d61f4e;
  --pink-light: #ff7ba0;
  --gold: #ffb52e;
  --cream: #fff7ec;
  --dark: #14070c;
  --dark-2: #23101a;
  --dark-3: #331726;
  --text-light: #fff;
  --text-muted-light: rgba(255, 255, 255, 0.72);
  --text-dark: #2b1a22;
  --text-muted-dark: #7a6a72;
  --card-light: #ffffff;
  --radius: 20px;
  --shadow-lg: 0 24px 60px -18px rgba(0, 0, 0, 0.35);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================
   Houdini: registra as variáveis como cores interpoláveis
   (elimina os "cortes secos" nas transições emocionais)
   ========================================================== */
@property --vsl-bg   { syntax: '<color>'; inherits: true; initial-value: #14070c; }
@property --vsl-glow  { syntax: '<color>'; inherits: true; initial-value: rgba(255, 61, 110, 0.4); }
@property --mesh-1    { syntax: '<color>'; inherits: true; initial-value: rgba(255, 61, 110, 0.34); }
@property --mesh-2    { syntax: '<color>'; inherits: true; initial-value: rgba(255, 181, 46, 0.26); }
@property --mesh-3    { syntax: '<color>'; inherits: true; initial-value: rgba(88, 44, 168, 0.34); }

[data-theme="dark"] {
  --bg: var(--dark);
  --bg-alt: var(--dark-2);
  --card: var(--dark-3);
  --text: var(--text-light);
  --text-muted: var(--text-muted-light);
  --border: rgba(255, 255, 255, 0.12);
}

[data-theme="light"] {
  --bg: var(--cream);
  --bg-alt: #fff;
  --card: #ffffff;
  --text: var(--text-dark);
  --text-muted: var(--text-muted-dark);
  --border: rgba(43, 26, 34, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  background-color: var(--vsl-bg, var(--dark));
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 2.5s ease-in-out, color var(--transition);
}

/* -------------------- Progress bar de scroll -------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  z-index: 200;
  box-shadow: 0 0 12px rgba(255, 61, 110, 0.7);
  transition: width 0.1s linear;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }
ul { list-style: none; }

/* -------------------- Utilitários -------------------- */
.container { width: min(1120px, 92%); margin: 0 auto; }
.container--narrow { width: min(860px, 92%); }

.highlight {
  color: var(--pink);
  font-weight: 800;
  position: relative;
  display: inline-block;
  transition: color var(--transition);
}
[data-theme="light"] .highlight { color: var(--pink-dark); }

.script {
  font-family: var(--font-script);
  font-size: 1.4em;
  color: var(--gold);
}
.script--accent { color: var(--pink); }
[data-theme="light"] .script--accent { color: var(--pink-dark); }

/* -------------------- Reveal (scroll animations) -------------------- */
.reveal {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
  will-change: opacity, transform;
}
.reveal--fade { transform: translateY(0) scale(0.98); }
.reveal--up { transform: translateY(48px); }
.reveal--down { transform: translateY(-48px); }
.reveal--left { transform: translateX(-64px); }
.reveal--right { transform: translateX(64px); }
.reveal--zoom { transform: scale(0.88); }

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================
   BARRA GEOGRÁFICA PREMIUM E ESTÁTICA
   ========================================================== */
.geo-bar {
  background: #0a0a0a; /* Fundo escuro e neutro */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 400;
  text-align: center;
  padding: 8px 16px;
  position: relative;
  z-index: 60;
  display: flex;
  justify-content: center;
  align-items: center;
}

.geo-bar__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  /* Removido o efeito marquee */
}

.geo-bar__icon {
  width: 14px;
  height: 14px;
  color: var(--pink); /* Mantém o brand color apenas no ícone */
  flex-shrink: 0;
  animation: pulsePin 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes pulsePin {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.8; }
  50% { transform: scale(1.15) translateY(-2px); opacity: 1; }
}

.geo-bar__text { letter-spacing: 0.3px; }
.geo-bar__city { color: #fff; font-weight: 600; text-transform: capitalize; }

/* ==========================================================
   HERO / VSL (DARK)
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0 96px;
  background-color: var(--vsl-color, transparent) !important;
  background-image: none;
  transition: background-color 2s ease-in-out;
}
[data-theme="light"] .hero {
  background-color: transparent;
  background-image: none;
}

/* Animated Mesh Gradient — fundo fluido com grain overlay premium */
.hero::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 62% 55% at 16% 22%, var(--mesh-1, rgba(255, 61, 110, 0.34)), transparent 56%),
    radial-gradient(ellipse 55% 48% at 80% 66%, var(--mesh-2, rgba(255, 181, 46, 0.26)), transparent 56%),
    radial-gradient(ellipse 52% 58% at 66% 16%, var(--mesh-3, rgba(88, 44, 168, 0.34)), transparent 58%);
  background-size: 130% 130%;
  background-position: center;
  background-blend-mode: screen;
  animation: meshFlow 18s ease-in-out infinite alternate;
  will-change: transform;
  transition: --mesh-1 3s ease-in-out, --mesh-2 3s ease-in-out, --mesh-3 3s ease-in-out !important;
}
@keyframes meshFlow {
  0%   { transform: translate3d(0%, 0%, 0) scale(1); }
  33%  { transform: translate3d(-2.5%, 2%, 0) scale(1.1); }
  66%  { transform: translate3d(2%, -2.5%, 0) scale(1.04); }
  100% { transform: translate3d(-1.5%, 1.5%, 0) scale(1.12); }
}
.hero__grain { z-index: -1; }
.hero__glow { z-index: -1; }
.hero__container { position: relative; z-index: 2; }

.hero__grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
}

.hero__glow {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  animation: glowFloat 9s ease-in-out infinite alternate;
}
.hero__glow--1 { width: 420px; height: 420px; background: rgba(255, 61, 110, 0.35); top: -120px; left: -100px; }
.hero__glow--2 { width: 360px; height: 360px; background: rgba(255, 181, 46, 0.28); top: auto; left: auto; bottom: -80px; right: -60px; animation-delay: -4s; }

@keyframes glowFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.12); }
}

.hero__container { position: relative; text-align: center; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.hero__badge svg { width: 17px; height: 17px; color: var(--gold); }
.hero__badge strong { color: var(--gold); }

.hero__title {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  max-width: 880px;
  margin: 0 auto 18px;
  letter-spacing: -0.5px;
}

.hero__subtitle {
  color: var(--text-muted-light);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero__subtitle strong { color: var(--gold); font-weight: 600; }

/* --- VSL Player --- */
.vsl {
  position: relative;
  width: min(760px, 100%);
  margin: 0 auto 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px var(--vsl-glow), 0 0 60px var(--vsl-glow) !important;
  transition: --vsl-glow 3s ease-in-out !important;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
}
.vsl__video { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.vsl__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(20,7,12,0.55));
  transition: opacity var(--transition), visibility var(--transition);
  cursor: pointer;
}
.vsl__overlay.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.vsl.is-playing .vsl__overlay:not(.is-hidden) { opacity: 0.85; }

/* Botão de play no centro quando o VSL está pausado com som ligado */
.vsl__resume {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
  background: rgba(0, 0, 0, 0.25);
}
.vsl__resume:not(.is-hidden) { opacity: 1; visibility: visible; pointer-events: auto; }
.vsl__resume-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--pink-light), var(--pink) 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 61, 110, 0.55);
  animation: playPulse 2s infinite;
}
.vsl__resume-btn svg {
  width: 30px;
  height: 30px;
  color: #fff;
  margin-left: 3px;
}

.vsl__play-btn {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--pink-light), var(--pink) 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 61, 110, 0.55);
  animation: playPulse 2s infinite;
  transition: transform var(--transition);
}
.vsl__play-btn:hover { transform: scale(1.08); }
.vsl__play-btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  transform: scale(1.08);
}
.vsl__play-icon { width: 40px; height: 40px; color: #fff; margin-left: 4px; }

@keyframes playPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 61, 110, 0.5); }
  70% { box-shadow: 0 0 0 28px rgba(255, 61, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 61, 110, 0); }
}

.vsl__hint {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInOut 2.4s ease-in-out infinite;
}
@keyframes fadeInOut { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

.vsl__progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 5;
}
.vsl__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  transition: width 0.25s linear;
}

.vsl__resume-btn svg { width: 26px; height: 26px; margin-left: 4px; }

/* ==========================================================
   MODO "FOCO NA VSL" — página travada até o vídeo chegar a 5:12
   ========================================================== */
body.is-locked {
  overflow: auto !important; /* Libera a rolagem do site inteiro */
  background: var(--vsl-bg, linear-gradient(180deg, #0a0408 0%, #150a11 100%)) !important;
  transition: background 2.5s ease-in-out;
}
body.is-locked .offer-content,
body.is-locked .sticky-cta,
body.is-locked .wa-fab,
body.is-locked .cookie-banner,
body.is-locked .marquee {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  display: none; /* Garante que o espaço vazio não seja renderizado entre o hero e o rodapé */
}
body.is-locked .footer {
  background: transparent !important;
}
body.is-locked .footer__disclaimer {
  display: none !important;
}
body.is-locked .hero {
  min-height: 100vh;
  min-height: 100dvh;
  height: auto; /* Remove a trava de 100vh para permitir a descida do scroll */
  padding: 40px 0 48px;
  overflow-y: visible; /* Remove a barra de rolagem falsa interna */
}
/* Centraliza por margem automática para que, se o conteúdo exceder a
   tela (celulares baixos), o hero role internamente sem clipar a VSL.
   O fundo é fixo, então não se move com a rolagem interna. */
body.is-locked .hero__container { margin: auto 0; }
/* Tema escuro focado na VSL: fundo mais escuro, conteúdo visível
   (headline + VSL + alerta) — padrão de página de vendas com delay.
   A base escura fica no body; o hero é transparente (camadas fixas). */
body.is-locked .hero {
  background-color: transparent;
  background-image: none;
  transition: background 1s ease;
}
body.is-locked .hero::before {
  opacity: 0.45;
  transition: opacity 1s ease;
}
body.is-locked .hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.is-locked .vsl {
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Alerta "Atenção" (com ícone) fica visível desde o início no modo travado,
   sem depender do reveal que só dispara quando entra no viewport. */
body.is-locked .hero__alert {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
body:not(.is-locked) .hero__badge,
body:not(.is-locked) .hero__title,
body:not(.is-locked) .hero__subtitle,
body:not(.is-locked) .hero__alert {
  transition: opacity 1s ease, transform 1s ease, filter 1s ease;
}
body:not(.is-locked) .hero::before {
  transition: opacity 1s ease;
}
/* Retorno suave ao tema original (light) */
body:not(.is-locked) .hero {
  transition: background 1s ease;
}
/* Fundo da VSL com movimento (antes e depois do delay) */
.vsl {
  animation: vslGlow 7s ease-in-out infinite;
}
@keyframes vslGlow {
  0%   { box-shadow: 0 30px 80px -20px rgba(255, 61, 110, 0.4), 0 0 40px rgba(255, 61, 110, 0.28); }
  50%  { box-shadow: 0 30px 80px -20px rgba(255, 181, 46, 0.45), 0 0 60px rgba(255, 181, 46, 0.3); }
  100% { box-shadow: 0 30px 80px -20px rgba(124, 58, 237, 0.42), 0 0 50px rgba(124, 58, 237, 0.28); }
}

.hero__alert {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 181, 46, 0.16) 0%, rgba(255, 181, 46, 0.05) 72%, rgba(255, 181, 46, 0.01) 100%);
  border: 1px solid rgba(255, 181, 46, 0.22);
  border-bottom: none;
  box-shadow: 0 26px 52px -28px rgba(255, 181, 46, 0.4);
  color: #ffe9bd;
  border-radius: 14px;
  padding: 14px 18px;
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.9rem;
}
.hero__alert svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; animation: floatSoft 3.5s ease-in-out infinite; will-change: transform; }
@keyframes floatSoft {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(4deg); }
}
.hero__alert strong { color: var(--gold); }

/* ==========================================================
   MARQUEE DE PROVA SOCIAL
   ========================================================== */
.marquee {
  overflow: hidden;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  padding: 12px 0;
  position: relative;
  z-index: 5;
}
.marquee__track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.marquee__item svg { width: 16px; height: 16px; }

/* ==========================================================
   SEÇÕES GERAIS (LIGHT)
   ========================================================== */
.offer-content { display: block; }
.offer-content[aria-hidden="true"] { display: none; }

.section { padding: 88px 0; }
.section--light { background: var(--bg); }
.section--dark {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--text-light);
}
.section--urgent {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 61, 110, 0.16), transparent 60%),
    var(--bg-alt);
}

/* ==========================================================
   PERFORMANCE — aparelhos fracos / 4G
   ========================================================== */
/* Seções pesadas fora da tela não são renderizadas até o scroll */
#objecoes,
#depoimentos,
#whatsprova,
#calculadora,
#ancora,
#vitrine,
#conteudo,
#certificado,
#bonus,
#valueStack,
#checkout,
#garantia,
#faq,
#documentos {
  content-visibility: auto;
  contain-intrinsic-size: auto 1200px;
}

/* Toque otimizado para mobile (sem atraso de 300ms e highlight) */
html {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
}
button, a, input, textarea, .reel, .vsl {
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

.section__title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section__lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 300;
}

/* ==========================================================
   OFERTA DE URGÊNCIA
   ========================================================== */
.urgency {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.urgency__ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--pink-dark), var(--pink));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 12px 22px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 14px 30px -10px rgba(255, 61, 110, 0.6);
  animation: shine 3.5s linear infinite;
}
.urgency__ribbon svg { width: 18px; height: 18px; }
@keyframes shine {
  0% { box-shadow: 0 14px 30px -10px rgba(255,61,110,0.6); }
  50% { box-shadow: 0 14px 44px -4px rgba(255,61,110,0.9); }
  100% { box-shadow: 0 14px 30px -10px rgba(255,61,110,0.6); }
}

.urgency__title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.urgency__title s { opacity: 0.55; font-weight: 400; }
.urgency__text { color: var(--text-muted); margin-bottom: 22px; font-weight: 300; }

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}
.countdown__unit {
  background: var(--card);
  border: 2px solid var(--pink);
  border-radius: 16px;
  padding: 16px 22px;
  min-width: 96px;
  box-shadow: var(--shadow-lg);
}
.countdown__num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.countdown__sep { font-size: 2.4rem; font-weight: 800; color: var(--pink); animation: blink 1s step-start infinite; }
@keyframes blink { 50% { opacity: 0.3; } }

.countdown.is-critical .countdown__num,
.countdown.is-critical .countdown__sep {
  animation: critical 1s infinite;
}
@keyframes critical { 50% { color: var(--gold); } }

/* ==========================================================
   BOTÕES
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  will-change: transform;
}
.btn svg { width: 20px; height: 20px; }

.btn--primary {
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  color: #fff;
  box-shadow: 0 18px 40px -12px rgba(255, 61, 110, 0.65);
}
.btn--primary:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.08); }

.btn--big { padding: 20px 44px; font-size: 1.2rem; width: 100%; }

.btn--pulse { animation: btnPulse 2.2s infinite; }
.btn--pulse, .vsl__play-btn, .vsl__resume-btn, .reel__sound, .wa-fab {
  will-change: box-shadow, transform;
}
@keyframes btnPulse {
  0% { box-shadow: 0 18px 40px -12px rgba(255, 61, 110, 0.65), 0 0 0 0 rgba(255, 61, 110, 0.4); }
  70% { box-shadow: 0 18px 40px -12px rgba(255, 61, 110, 0.65), 0 0 0 18px rgba(255, 61, 110, 0); }
  100% { box-shadow: 0 18px 40px -12px rgba(255, 61, 110, 0.65), 0 0 0 0 rgba(255, 61, 110, 0); }
}

.btn--wa {
  background: linear-gradient(90deg, #25d366, #128c7e);
  color: #fff;
  width: 100%;
  box-shadow: 0 14px 32px -10px rgba(37, 211, 102, 0.6);
}
.btn--wa:hover { transform: translateY(-2px); }

.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.btn--ghost:hover { border-color: var(--pink); color: var(--pink); }

.urgency__secure, .checkout__secure {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.urgency__secure svg, .checkout__secure svg { width: 15px; height: 15px; color: #25d366; }

/* --- Escassez rotativa (cascata) --- */
.scarcity {
  max-width: 520px;
  margin: 0 auto 26px;
  padding: 11px 18px;
  background: rgba(255, 181, 46, 0.14);
  border: 1px solid rgba(255, 181, 46, 0.4);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-theme="light"] .scarcity { color: var(--text-dark); }
.scarcity.is-shown { opacity: 1; transform: translateY(0); }
.scarcity strong { color: var(--pink); }
[data-theme="light"] .scarcity strong { color: var(--pink-dark); }

/* ==========================================================
   QUEBRA DE OBJEÇÕES
   ========================================================== */
.obstacles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.obstacle {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.obstacle:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -18px rgba(0, 0, 0, 0.3); }
.obstacle__icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 61, 110, 0.14), rgba(255, 181, 46, 0.14));
  display: flex;
  align-items: center;
  justify-content: center;
}
.obstacle__icon svg { width: 28px; height: 28px; color: var(--pink); }
[data-theme="light"] .obstacle__icon svg { color: var(--pink-dark); }
.obstacle h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 700; }
.obstacle p { color: var(--text-muted); font-size: 0.92rem; font-weight: 300; }

/* ==========================================================
   PROVA SOCIAL — VÍDEOS (REELS)
   ========================================================== */
.reels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.reel {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 2px solid transparent;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.reel:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 30px 60px -18px rgba(0, 0, 0, 0.3); }
.reel.is-active { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255, 61, 110, 0.25), var(--shadow-lg); }
.reel__media { position: relative; aspect-ratio: 9 / 16; overflow: hidden; background: #000; }
.reel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
/* Placeholder elegante enquanto o vídeo não inicia (sem tempo visual) */
.reel__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 61, 110, 0.28), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(255, 181, 46, 0.2), transparent 55%),
    linear-gradient(160deg, #22101c 0%, #150a11 100%);
  transition: opacity 0.6s ease;
}
.reel__video { z-index: 2; }
.reel.is-active .reel__media::before,
.reel.is-muted .reel__media::before { opacity: 0; pointer-events: none; }
.reel__sound {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  min-width: 56px;
  height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 6;
  animation: reelPulse 2s infinite;
  transition: transform var(--transition), background var(--transition);
  white-space: nowrap;
}
.reel__sound svg { width: 24px; height: 24px; flex-shrink: 0; }
.reel__sound-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; }
.reel__sound:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--pink); }
.reel__sound:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  transform: translate(-50%, -50%) scale(1.08);
}
.reel__sound.is-on { animation: none; background: var(--pink); border-color: #fff; transform: translate(-50%, -50%) scale(0.8); top: auto; left: auto; bottom: 10px; right: 10px; width: 44px; height: 44px; padding: 0; border-radius: 50%; }
.reel__sound.is-on .reel__sound-label { display: none; }

@keyframes reelPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
  70% { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.reel.is-muted .reel__video { opacity: 0.9; }
.reel.is-muted .reel__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  background: rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s ease;
}
/* Botão central sempre visível enquanto o depoimento roda sem som */
.reel.is-muted .reel__sound {
  display: flex;
  animation: reelPulse 1.8s infinite;
}
.reel.is-active .reel__sound.is-on {
  top: auto; left: auto; bottom: 10px; right: 10px;
  transform: translate(0, 0) scale(0.8);
  width: 44px; height: 44px; padding: 0; border-radius: 50%;
}
.reel__name { font-weight: 700; padding: 14px 16px 4px; color: var(--text); }
.reel__text { padding: 0 16px 16px; font-size: 0.85rem; color: var(--text-muted); font-weight: 300; }

/* ==========================================================
   PROVA SOCIAL — DEPOIMENTOS EM IMAGEM (estilo WhatsApp)
   Foto de perfil (45px) à esquerda + balão de conversa à direita
   ========================================================== */
.depo-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 20px auto 0;
}
.depo-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  width: 100%;
  transition: transform var(--transition);
}
.depo-card:hover { transform: translateX(4px); }

.depo-card__photo {
  width: 45px; height: 45px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--pink);
  box-shadow: 0 4px 10px rgba(255, 61, 110, 0.2);
}
.depo-card__body {
  background: #005c4b;
  color: #fff;
  border-radius: 0 16px 16px 16px;
  padding: 12px 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  max-width: calc(100% - 57px);
}
.depo-card__name {
  font-size: 0.9rem;
  color: #9fe8b8;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.depo-card__quote {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================
   CALCULADORA DE LUCRO — LIVE CALCULATOR PREMIUM
   ========================================================== */
.calc-premium {
  position: relative;
  background: var(--card);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 48px 32px 32px;
  box-shadow: var(--shadow-lg);
  margin-top: 30px;
  text-align: center;
}
.calc-premium__badge {
  position: absolute;
  top: -16px;
  right: 24px;
  background: var(--card-light, #fff);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.calc-premium__badge svg { width: 14px; height: 14px; color: var(--gold); }
.calc-premium__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.calc-premium__limit { font-size: 0.9rem; font-weight: 700; color: var(--text-muted); }
.calc-premium__display {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}
.calc-premium__display strong { color: var(--pink); font-size: 1.4rem; font-weight: 900; margin-right: 4px; }
.calc-premium input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) var(--p, 33%), rgba(128,128,128,0.2) var(--p, 33%));
  outline: none;
  margin-bottom: 32px;
}
.calc-premium input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  margin-top: -11px;
}
.calc-premium__result {
  border: 2px dashed rgba(255, 181, 46, 0.4);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  background: rgba(255, 181, 46, 0.03);
}
.calc-premium__label { display: block; font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; }
.calc-premium__value { display: block; font-size: 3rem; font-weight: 900; color: #128c7e; line-height: 1; letter-spacing: -1px; }
.calc-premium__divider { border: none; border-top: 1px solid var(--border); margin: 16px auto; width: 80%; }
.calc-premium__note { font-size: 0.8rem; color: var(--text-muted); font-weight: 300; }
.calc-premium .btn { width: 100%; }

/* ==========================================================
   ÂNCORA DE PREÇO
   ========================================================== */
.price-anchor { margin-top: 30px; }
.price-anchor__bar { margin-bottom: 22px; }
.price-anchor__bar-fill {
  min-height: 64px;
  height: auto;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  font-weight: 700;
  color: #fff;
  width: 0%;
  animation: growBar 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.price-anchor__bar--cake .price-anchor__bar-fill {
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
}
.price-anchor__bar--course .price-anchor__bar-fill {
  background: linear-gradient(90deg, var(--gold), #ff8c00);
}
.price-anchor__bar--left .price-anchor__bar-fill {
  background: linear-gradient(90deg, #25d366, #128c7e);
}
@keyframes growBar {
  from { width: 0%; }
  to   { width: var(--fill); }
}
.price-anchor__note {
  text-align: center;
  margin-top: 18px;
  color: var(--text-muted);
  font-weight: 300;
}
.price-anchor__note strong { color: #128c7e; }

/* ==========================================================
   VITRINE
   ========================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 20px;
}
.gallery__item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, #fff7ec, #ffe9d0);
}
.gallery__item--large { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  padding: 14px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item img[src=""], .gallery__item img.error { background: linear-gradient(135deg, var(--pink-light), var(--gold)); }

/* ==========================================================
   CONTEÚDO DO CURSO
   ========================================================== */
.modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 30px;
}
.module {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.module:hover { transform: translateY(-6px); }
.module--accent { border-top: 5px solid var(--gold); }
.module__head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.module__num {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  padding: 8px 14px;
  border-radius: 10px;
  letter-spacing: 1px;
}
.module--accent .module__num { background: linear-gradient(135deg, var(--gold), #ff8c00); }
.module__head h3 { font-size: 1.25rem; }
.module__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}
.module__list svg { width: 19px; height: 19px; color: #25d366; flex-shrink: 0; }

/* ==========================================================
   CERTIFICADO
   ========================================================== */
.cert {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.cert__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  outline: 1px solid var(--border);
  transform: rotate(-2deg);
  transition: transform var(--transition);
}
.cert__image:hover { transform: rotate(0deg) scale(1.02); }
.cert__title { font-size: 1.7rem; line-height: 1.25; margin-bottom: 14px; }
.cert__text p { color: var(--text-muted); font-weight: 300; margin-bottom: 18px; }
.cert__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-weight: 500;
}
.cert__list svg { width: 20px; height: 20px; color: var(--pink); }
[data-theme="light"] .cert__list svg { color: var(--pink-dark); }

/* ==========================================================
   BÔNUS
   ========================================================== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.bonus {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.bonus::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255, 181, 46, 0.2);
  transition: transform 0.5s ease;
}
.bonus:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -18px rgba(0, 0, 0, 0.3); }
.bonus:hover::before { transform: scale(1.6); }
.bonus__icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
}
.bonus__icon svg { width: 30px; height: 30px; color: #fff; }
.bonus__tag {
  display: inline-block;
  background: rgba(255, 181, 46, 0.2);
  color: #c97e00;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.bonus h3 { font-size: 1.15rem; margin-bottom: 8px; }
.bonus p { color: var(--text-muted); font-size: 0.9rem; font-weight: 300; }

/* ==========================================================
   VALUE STACK (cascata de vendas)
   ========================================================== */
.stack {
  max-width: 640px;
  margin: 0 auto 28px;
}
.stack__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), border-color var(--transition);
}
.stack__item:hover { transform: translateX(6px); border-color: var(--pink); }
.stack__check {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stack__check svg { width: 20px; height: 20px; }
.stack__info { flex: 1; }
.stack__info h3 { font-size: 1rem; margin-bottom: 2px; }
.stack__info p { font-size: 0.82rem; color: var(--text-muted); font-weight: 300; }
.stack__value {
  font-weight: 800;
  color: var(--text-muted);
  white-space: nowrap;
  font-size: 0.95rem;
}

.stack__total {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 2px solid var(--pink);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.stack__total-label { display: block; font-size: 0.9rem; color: var(--text-muted); }
.stack__total-crossed { font-size: 1.2rem; color: var(--text-muted); }
.stack__today { margin: 14px 0 22px; }
.stack__today-label { display: block; font-size: 0.9rem; color: var(--text-muted); }
.stack__today-value {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1.1;
}
[data-theme="light"] .stack__today-value { color: var(--pink-dark); }
.stack__total .btn { width: 100%; }
.stack__save { margin-top: 14px; font-size: 0.85rem; color: var(--text-muted); }
.stack__save strong { color: #128c7e; }

/* ==========================================================
   CHECKOUT FINAL
   ========================================================== */
.checkout {
  position: relative;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.checkout__stamp {
  position: absolute;
  top: -34px;
  right: -14px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-weight: 900;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(12deg);
  box-shadow: 0 14px 30px rgba(255, 181, 46, 0.5);
  animation: spinSmooth 14s linear infinite;
  will-change: transform;
}
@keyframes spinSmooth {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.checkout__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 22px; }
.checkout__price { margin-bottom: 28px; }
.checkout__price-old {
  display: block;
  font-size: 1.1rem;
  text-decoration: line-through;
  opacity: 0.6;
  margin-bottom: 6px;
}
.checkout__price-new { display: block; font-size: 1.5rem; }
.checkout__price-new strong { font-size: 2.6rem; color: var(--gold); display: block; line-height: 1.1; }
.checkout__price-installment { display: block; font-size: 0.95rem; opacity: 0.75; margin-top: 4px; }

.checkout__flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.checkout__flag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 1px;
}

/* ==========================================================
   GARANTIA
   ========================================================== */
.guarantee {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 40px;
  background: var(--card);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.guarantee__badge {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 40px -10px rgba(255, 181, 46, 0.6);
  animation: badgeBreathe 4.5s ease-in-out infinite;
  will-change: transform;
}
@keyframes badgeBreathe {
  0%, 100% { transform: translateY(0) scale(1) rotate(-2deg); }
  50% { transform: translateY(-8px) scale(1.03) rotate(2deg); }
}
.guarantee__days { font-size: 3.4rem; font-weight: 900; line-height: 1; }
.guarantee__days-label { font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; }
.guarantee__text h2 { font-size: 1.7rem; margin-bottom: 12px; }
.guarantee__text p { color: var(--text-muted); font-weight: 300; margin-bottom: 10px; }
.guarantee__signature {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--pink);
}
[data-theme="light"] .guarantee__signature { color: var(--pink-dark); }

/* ==========================================================
   FAQ
   ========================================================== */
.faq { max-width: 720px; margin: 30px auto 0; }
.faq__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: border-color var(--transition);
}
.faq__item[open] { border-color: var(--pink); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg {
  width: 20px; height: 20px;
  color: var(--pink);
  transition: transform 0.35s ease;
  flex-shrink: 0;
}
[data-theme="light"] .faq__item summary svg { color: var(--pink-dark); }
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__answer {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.95rem;
  animation: faqOpen 0.35s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   DOCUMENTOS LEGAIS (termos e privacidade na própria página)
   ========================================================== */
.docs { padding-bottom: 40px; }
.docs__box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.docs__item { border-bottom: 1px solid var(--border); }
.docs__item:last-child { border-bottom: none; }
.docs__item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 26px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  transition: background var(--transition);
}
.docs__item summary::-webkit-details-marker { display: none; }
.docs__item summary:hover { background: rgba(255, 61, 110, 0.05); }
.docs__item summary svg {
  width: 22px;
  height: 22px;
  color: var(--pink);
  flex-shrink: 0;
}
[data-theme="light"] .docs__item summary svg { color: var(--pink-dark); }
.docs__item[open] summary { border-bottom: 1px solid var(--border); }
.docs__body { padding: 10px 26px 26px; }
.docs__body h4 {
  font-size: 0.95rem;
  margin: 18px 0 6px;
  color: var(--text);
}
.docs__body p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ==========================================================
   RODAPÉ
   ========================================================== */
.footer {
  background: var(--dark);
  color: var(--text-muted-light);
  padding: 56px 0 90px;
  font-size: 0.82rem;
}
[data-theme="light"] .footer {
  background: var(--dark);
  color: var(--text-muted-light);
}
.footer__disclaimer {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
  line-height: 1.7;
}
.footer__disclaimer p { margin-bottom: 12px; }
.footer__disclaimer strong { color: var(--gold); }
.footer__links {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 20px;
}
.footer__links a { color: var(--text-light); border-bottom: 1px solid transparent; transition: border-color var(--transition); }
.footer__links a:hover { border-color: var(--gold); }
.footer__copyright { text-align: center; opacity: 0.6; }

/* ==========================================================
   BANNER DE COOKIES (LGPD)
   ========================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 0 16px calc(14px + env(safe-area-inset-bottom));
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 880px;
  margin: 0 auto;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 240px;
}
.cookie-banner__text svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.cookie-banner__text p { font-size: 0.85rem; font-weight: 300; color: var(--text-muted); }
.cookie-banner__text a { color: var(--pink); border-bottom: 1px solid var(--pink); }
[data-theme="light"] .cookie-banner__text a { color: var(--pink-dark); border-color: var(--pink-dark); }
.cookie-banner__actions { display: flex; gap: 10px; }

/* ==========================================================
   STICKY CTA (MOBILE)
   ========================================================== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(20, 7, 12, 0.92) 40%);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }

@media (min-width: 769px) {
  .sticky-cta { display: none; }
}

/* ==========================================================
   BOTÃO WHATSAPP
   ========================================================== */
.wa-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 85;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
  animation: waPulse 2.4s infinite;
  transition: transform var(--transition), opacity 0.6s ease, visibility 0.6s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.wa-fab.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
.wa-fab:hover { transform: scale(1.1); }
.wa-fab svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), 0 0 0 22px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================
   MODAIS
   ========================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 7, 12, 0.8);
  backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--bg);
  color: var(--text);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal.is-open .modal__dialog { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.modal__close:hover { background: var(--pink); color: #fff; }
.modal__close svg { width: 18px; height: 18px; }

.modal__head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.modal__wa-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.modal__wa-avatar svg { width: 26px; height: 26px; }
.modal__head h3 { font-size: 1.2rem; line-height: 1.2; }
.modal__head p { font-size: 0.82rem; color: var(--text-muted); }

.modal__form label { display: block; margin-bottom: 14px; }
.modal__form label span { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; }
.modal__form input,
.modal__form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.modal__form input:focus,
.modal__form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 61, 110, 0.15);
}
.modal__form textarea { resize: vertical; }

/* ==========================================================
   RESPONSIVO
   ========================================================== */
@media (max-width: 1024px) {
  .reels { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .depo-cards { max-width: 520px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .obstacles { grid-template-columns: 1fr; }
  .modules { grid-template-columns: 1fr; }
  .cert { grid-template-columns: 1fr; gap: 28px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .guarantee__badge { margin: 0 auto; }
  .hero { padding: 56px 0 72px; }
  .vsl__play-btn { width: 74px; height: 74px; }
  .vsl__play-icon { width: 30px; height: 30px; }
  .checkout__stamp { width: 80px; height: 80px; right: -6px; top: -28px; font-size: 0.95rem; }
  .wa-fab { bottom: 96px; }

  /* Título do hero: compacto para quebrar em no máximo 4 linhas no mobile */
  .hero__title {
    font-size: clamp(1.1rem, 4.8vw, 1.65rem);
    line-height: 1.15;
    letter-spacing: -0.4px;
  }

  /* Alerta "Atenção": respiro em relação ao bloco inferior */
  .hero__alert { margin-bottom: 40px; }

  /* Âncora de preço: texto e valor sem sobreposição no mobile */
  .price-anchor__bar-fill {
    min-width: 100% !important; /* Força 100% de largura no mobile para acomodar o texto */
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px;
    font-size: 0.95rem;
  }
  .price-anchor__bar-fill span,
  .price-anchor__bar-fill strong {
    display: inline-block;
  }

  /* Vitrine: imagens sempre visíveis, sem altura fixa nem overflow oculto */
  .gallery { grid-auto-rows: auto; }
  .gallery__item { height: auto; overflow: visible; }
  .gallery__item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    padding: 0;
  }
}

@media (max-width: 520px) {
  .reels { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--large,
  .gallery__item--wide { grid-column: span 1; grid-row: span 1; }
  .urgency__ribbon { font-size: 0.72rem; }
  .countdown__unit { padding: 12px 16px; min-width: 80px; }
}
