/* ============================================================
   GDV — Geração de Demanda Vitalícia · Sales Page
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg-0: #000000;
  --bg-1: #0A0E1A;
  --bg-2: #0d1322;
  --panel: #0f1626;
  --panel-2: #121b2e;

  --accent: #1E6FFF;
  --accent-bright: #2E8BFF;
  --accent-soft: #5fa3ff;
  --accent-rgb: 30, 111, 255;

  --chrome: #C8D2DD;
  --chrome-dim: rgba(200, 210, 221, 0.16);
  --chrome-line: rgba(200, 210, 221, 0.12);

  --text: #FFFFFF;
  --muted: #A8B2C0;
  --muted-dim: #6f7a8c;
  --green: #34D399;
  --red: #F2728C;

  --glow: 1; /* tweakable multiplier */

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --maxw: 1120px;
  --readw: 760px;
  --radius: 18px;
  --radius-sm: 12px;

  --pad-section: clamp(68px, 10vw, 128px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* page-wide ambient background */
.page {
  position: relative;
  background:
    radial-gradient(1200px 700px at 50% -200px, rgba(var(--accent-rgb), 0.18), transparent 60%),
    linear-gradient(180deg, #0A0E1A 0%, #060912 45%, #000000 100%);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.5rem); }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--muted); }
strong, b { color: var(--text); font-weight: 700; }
.hl { color: var(--accent-bright); }
.hl-green { color: var(--green); }
.chrome-text {
  background: linear-gradient(180deg, #ffffff 0%, var(--chrome) 55%, #8b97a6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.read { max-width: var(--readw); margin-left: auto; margin-right: auto; }
section { padding: var(--pad-section) 0; position: relative; }
.center { text-align: center; }

/* eyebrow label with arrow motif */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--chrome);
  padding: 8px 16px 8px 13px;
  border: 1px solid var(--chrome-line);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 22px;
}
.eyebrow svg { width: 15px; height: 15px; }
.eyebrow.accent { color: var(--accent-soft); border-color: rgba(var(--accent-rgb), 0.4); }

/* section divider — ascending hairline */
.divider { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 6px 0; }
.divider .line { height: 1px; width: min(120px, 22vw); background: linear-gradient(90deg, transparent, var(--chrome-dim)); }
.divider .line.r { background: linear-gradient(90deg, var(--chrome-dim), transparent); }
.divider svg { width: 20px; height: 20px; color: var(--accent); }

/* ---------- Buttons ---------- */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-head); font-weight: 800; font-size: clamp(1rem, 2.2vw, 1.18rem);
  letter-spacing: 0.02em; text-transform: uppercase; text-align: center;
  color: #fff; cursor: pointer;
  padding: 20px 34px; border: 0; border-radius: 14px;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.14) inset,
    0 10px 30px calc(-6px) rgba(var(--accent-rgb), calc(0.6 * var(--glow))),
    0 0 60px rgba(var(--accent-rgb), calc(0.35 * var(--glow)));
  transition: transform .2s ease, box-shadow .3s ease, filter .2s ease;
  position: relative; line-height: 1.2;
}
.btn-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.22) inset,
    0 14px 40px calc(-6px) rgba(var(--accent-rgb), calc(0.7 * var(--glow))),
    0 0 90px rgba(var(--accent-rgb), calc(0.55 * var(--glow)));
}
.btn-cta svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-cta.pulse { animation: ctaPulse 2.8s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.14) inset, 0 10px 30px -6px rgba(var(--accent-rgb), calc(0.55*var(--glow))), 0 0 50px rgba(var(--accent-rgb), calc(0.30*var(--glow))); }
  50% { box-shadow: 0 0 0 1px rgba(255,255,255,0.2) inset, 0 12px 38px -6px rgba(var(--accent-rgb), calc(0.7*var(--glow))), 0 0 80px rgba(var(--accent-rgb), calc(0.5*var(--glow))); }
}

.cta-block { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-block .btn-cta { width: min(540px, 100%); }

/* guarantee/secure seal */
.seal {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.82rem; font-weight: 600; color: var(--muted);
  letter-spacing: 0.02em;
}
.seal svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--chrome-line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 18px 50px -20px rgba(var(--accent-rgb), calc(0.5*var(--glow))), 0 0 0 1px rgba(var(--accent-rgb),0.2);
}
.icon-badge {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; flex-shrink: 0;
  background: radial-gradient(120% 120% at 30% 20%, rgba(var(--accent-rgb),0.22), rgba(var(--accent-rgb),0.04));
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  box-shadow: 0 0 24px rgba(var(--accent-rgb), calc(0.25*var(--glow))) inset;
}
.icon-badge svg { width: 24px; height: 24px; color: var(--accent-soft); }
.icon-badge.chrome { background: rgba(255,255,255,0.03); border-color: var(--chrome-dim); box-shadow:none; }
.icon-badge.chrome svg { color: var(--chrome); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .btn-cta.pulse { animation: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(28px, 5vw, 48px); padding-bottom: clamp(48px, 8vw, 90px); text-align: center; }
.hero-logo { width: min(360px, 78vw); margin: 0 auto clamp(22px, 4vw, 34px); filter: drop-shadow(0 10px 55px rgba(var(--accent-rgb), 0.45)); }
.urgency-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; color: #ffd9b0;
  background: rgba(255, 160, 60, 0.08);
  border: 1px solid rgba(255, 170, 80, 0.3);
  padding: 9px 18px; border-radius: 100px; margin-bottom: 26px;
  letter-spacing: 0.01em;
}
.urgency-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #ff9d3c; box-shadow: 0 0 10px #ff9d3c; animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.35;} }
.hero h1 { max-width: 16ch; margin: 0 auto 22px; text-wrap: balance; }
.hero .lead { max-width: 60ch; margin: 0 auto 8px; }

/* VSL player */
.vsl-wrap { width: 100%; max-width: 460px; margin: clamp(26px,5vw,46px) auto clamp(24px,4vw,36px); }
#vturb-player {
  position: relative; width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb),0.1), 0 30px 80px -30px rgba(var(--accent-rgb), calc(0.6*var(--glow))), 0 0 100px -20px rgba(var(--accent-rgb), calc(0.4*var(--glow)));
}
/* Arredonda o próprio player (evita o bug iOS de overflow+radius que some o vídeo) */
#vturb-player vturb-smartplayer {
  display: block; width: 100% !important; max-width: 100% !important;
  border-radius: 18px; overflow: hidden;
}
.vsl-placeholder { text-align: center; color: var(--muted); padding: 20px; }
.vsl-play {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  box-shadow: 0 0 50px rgba(var(--accent-rgb), 0.6);
  animation: ctaPulse 2.6s ease-in-out infinite;
}
.vsl-play svg { width: 30px; height: 30px; color: #fff; margin-left: 4px; }
.vsl-placeholder .vsl-label { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 0.95rem; letter-spacing: .04em; }
.vsl-placeholder .vsl-sub { font-size: 0.8rem; color: var(--muted-dim); margin-top: 4px; }

/* ============================================================
   PROBLEM
   ============================================================ */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.pain-item { display: flex; gap: 16px; align-items: flex-start; }
.pain-item .icon-badge svg { color: var(--red); }
.pain-item .icon-badge { background: rgba(242,114,140,0.07); border-color: rgba(242,114,140,0.28); box-shadow:none; }
.pain-item p { color: var(--muted); }
.pain-item p strong { color: #fff; }

/* ============================================================
   SHOPPING METAPHOR
   ============================================================ */
.shopping { background: linear-gradient(180deg, #070b14, #0a1120 60%, #070b14); border-top: 1px solid var(--chrome-line); border-bottom: 1px solid var(--chrome-line); }
.shopping-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.target-vis {
  position: relative; aspect-ratio: 1/1; max-width: 420px; margin: 0 auto; width: 100%;
  border-radius: 22px; border: 1px solid var(--chrome-line);
  background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb),0.12), transparent 65%), var(--panel);
  display: grid; place-items: center; overflow: hidden;
}
.target-rings { position: absolute; inset: 0; display: grid; place-items: center; }
.target-rings span { position: absolute; border: 1px solid rgba(var(--accent-rgb),0.25); border-radius: 50%; }
.target-rings span:nth-child(1){ width: 86%; height: 86%; }
.target-rings span:nth-child(2){ width: 60%; height: 60%; border-color: rgba(var(--accent-rgb),0.4); }
.target-rings span:nth-child(3){ width: 34%; height: 34%; border-color: rgba(var(--accent-rgb),0.6); }
.target-center { width: 16%; height: 16%; border-radius: 50%; background: radial-gradient(circle, var(--accent-bright), var(--accent)); box-shadow: 0 0 40px rgba(var(--accent-rgb),0.8); z-index:2; }
.target-tags { position: absolute; inset: 0; }
.target-tags .tag {
  position: absolute; font-size: 0.72rem; font-weight: 600; color: var(--text);
  background: rgba(15,22,38,0.9); border: 1px solid var(--chrome-dim);
  padding: 5px 11px; border-radius: 100px; white-space: nowrap; backdrop-filter: blur(4px);
}
.target-tags .tag:nth-child(1){ top: 8%; left: 6%; }
.target-tags .tag:nth-child(2){ top: 20%; right: 2%; }
.target-tags .tag:nth-child(3){ bottom: 16%; left: 0%; }
.target-tags .tag:nth-child(4){ bottom: 6%; right: 8%; }
.shopping-points { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.shopping-points li { display: flex; gap: 13px; align-items: flex-start; list-style: none; color: var(--muted); }
.shopping-points svg { width: 22px; height: 22px; color: var(--accent-soft); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   STORY / AUTHORITY
   ============================================================ */
.story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.story-photo { position: relative; }
.story-photo img { border-radius: 20px; border: 1px solid var(--chrome-dim); width: 100%; object-fit: cover; }
.story-photo::after { content:''; position:absolute; inset:0; border-radius:20px; box-shadow: inset 0 -80px 90px -40px rgba(7,11,20,0.9), 0 30px 70px -30px rgba(var(--accent-rgb),0.4); pointer-events:none; }
.story-stat { position: absolute; bottom: 18px; left: 18px; right: 18px; display: flex; gap: 10px; }
.story-stat .chip {
  flex: 1; background: rgba(8,12,20,0.78); backdrop-filter: blur(8px);
  border: 1px solid var(--chrome-dim); border-radius: 12px; padding: 12px 14px; text-align: center;
}
.story-stat .chip b { font-family: var(--font-head); font-size: 1.25rem; color: var(--accent-soft); display: block; }
.story-stat .chip span { font-size: 0.72rem; color: var(--muted); }
.story-copy p { color: var(--muted); margin-bottom: 16px; }
.story-copy p:last-child { margin-bottom: 0; }
.pull {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(1.15rem,2.6vw,1.5rem);
  color: #fff; line-height: 1.3; margin: 6px 0 20px; padding-left: 18px;
  border-left: 3px solid var(--accent);
}

/* ============================================================
   VILLAIN / TRUTH
   ============================================================ */
.villain { background: linear-gradient(180deg, #0b0710, #0a0c16); }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.compare .card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.compare .col-bad { border-color: rgba(242,114,140,0.25); }
.compare .col-good { border-color: rgba(var(--accent-rgb),0.4); }
.compare ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 0.96rem; }
.compare li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.col-bad li svg { color: var(--red); }
.col-good li svg { color: var(--green); }
.turn {
  margin-top: 44px; text-align: center; max-width: 720px; margin-left:auto; margin-right:auto;
  font-family: var(--font-head); font-weight: 800; font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.3;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.carousel { position: relative; margin-top: 42px; }
.carousel-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 18px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.carousel-track::-webkit-scrollbar { display: none; }
.testi {
  scroll-snap-align: center; flex: 0 0 min(360px, 84vw); display: flex; flex-direction: column;
}
.testi.feature { border-color: rgba(var(--accent-rgb),0.5); box-shadow: 0 0 0 1px rgba(var(--accent-rgb),0.2), 0 24px 60px -30px rgba(var(--accent-rgb),0.5); }
.testi .media {
  aspect-ratio: 4/3; border-radius: 12px; margin-bottom: 18px; overflow: hidden;
  background: linear-gradient(135deg, #16223c, #0b1120); border: 1px solid var(--chrome-line);
  display: grid; place-items: center; color: var(--muted-dim); position: relative;
}
.testi .media .ph { text-align: center; font-size: 0.78rem; padding: 14px; }
.testi .media .ph svg { width: 34px; height: 34px; color: var(--chrome-dim); margin: 0 auto 8px; }
/* Vídeo de depoimento (vertical 9:16) */
.testi .media.video { aspect-ratio: 9/16; background: #05080f; }
.testi .media.video video { width: 100%; height: 100%; object-fit: cover; display: block; background: #05080f; cursor: pointer; }
.testi .result { font-family: var(--font-head); font-weight: 900; font-size: 1.7rem; color: var(--green); line-height: 1; margin-bottom: 6px; }
.testi .result.blue { color: var(--accent-soft); }
.testi .quote { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; flex: 1; }
.testi .who { display: flex; align-items: center; gap: 11px; border-top: 1px solid var(--chrome-line); padding-top: 14px; }
.testi .who .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #16223c); display:grid; place-items:center; font-family:var(--font-head); font-weight:800; color:#fff; font-size:0.95rem; flex-shrink:0; }
.testi .who b { display: block; font-size: 0.92rem; }
.testi .who span { font-size: 0.78rem; color: var(--muted-dim); }
.badge-new { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; color: var(--accent-soft); border: 1px solid rgba(var(--accent-rgb),0.4); padding: 3px 9px; border-radius: 100px; text-transform: uppercase; }
.carousel-nav { display: flex; justify-content: center; gap: 12px; margin-top: 18px; }
.carousel-nav button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--chrome-dim); background: rgba(255,255,255,0.03); color: var(--chrome); cursor: pointer; display: grid; place-items: center; transition: all .2s; }
.carousel-nav button:hover { border-color: var(--accent); color: var(--accent-soft); }
.carousel-nav button svg { width: 20px; height: 20px; }

/* stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 40px; }
.stat-strip .s { text-align: center; padding: 22px 12px; border: 1px solid var(--chrome-line); border-radius: 14px; background: rgba(255,255,255,0.015); }
.stat-strip .s b { font-family: var(--font-head); font-weight: 900; font-size: clamp(1.6rem,4vw,2.4rem); color: var(--accent-soft); display:block; }
.stat-strip .s span { font-size: 0.82rem; color: var(--muted); }

/* ============================================================
   MECHANISM — 4 METRICS
   ============================================================ */
.mech { background: linear-gradient(180deg, #060912, #0a1120); border-top:1px solid var(--chrome-line); }
.metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 44px; }
.metric {
  border: 1px solid var(--chrome-line); border-radius: 16px; padding: 24px 20px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel)); position: relative; overflow: hidden;
}
.metric .num { font-family: var(--font-head); font-weight: 900; font-size: 2.4rem; color: rgba(var(--accent-rgb),0.35); line-height:1; }
.metric h4 { margin: 8px 0 8px; font-size: 1.08rem; }
.metric p { font-size: 0.88rem; color: var(--muted); }
.metric .spark { position: absolute; right: 16px; top: 18px; opacity: .5; }
.metric .spark svg { width: 40px; height: 24px; color: var(--accent); }
.mech-note { text-align: center; margin-top: 38px; font-size: 1.05rem; color: var(--muted); }

/* ============================================================
   AI COPILOT
   ============================================================ */
.copilot-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px,5vw,56px); align-items: center; }
.chat {
  background: linear-gradient(180deg, var(--panel-2), #0a0f1c);
  border: 1px solid rgba(var(--accent-rgb),0.3); border-radius: 22px; padding: 20px;
  box-shadow: 0 30px 80px -40px rgba(var(--accent-rgb),0.6);
}
.chat-head { display: flex; align-items: center; gap: 11px; padding-bottom: 16px; border-bottom: 1px solid var(--chrome-line); margin-bottom: 16px; }
.chat-head .bot { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--accent-bright), var(--accent)); display:grid; place-items:center; box-shadow: 0 0 24px rgba(var(--accent-rgb),0.5); }
.chat-head .bot svg { width: 20px; height: 20px; color: #fff; }
.chat-head b { font-size: 0.95rem; }
.chat-head span { font-size: 0.74rem; color: var(--green); display:flex; align-items:center; gap:6px; }
.chat-head span::before { content:''; width:7px; height:7px; border-radius:50%; background: var(--green); box-shadow:0 0 8px var(--green); }
.bubble { padding: 12px 15px; border-radius: 14px; font-size: 0.9rem; margin-bottom: 11px; max-width: 88%; line-height: 1.5; }
.bubble.bot { background: rgba(var(--accent-rgb),0.12); border: 1px solid rgba(var(--accent-rgb),0.22); color: #eaf1ff; border-top-left-radius: 4px; }
.bubble.bot b { color: var(--accent-soft); }
.bubble.me { background: rgba(255,255,255,0.05); border: 1px solid var(--chrome-line); color: var(--muted); margin-left: auto; border-top-right-radius: 4px; }

/* ---- WhatsApp-style chat ---- */
.chat.wa {
  padding: 0; overflow: hidden; border-radius: 16px;
  border: 1px solid rgba(var(--accent-rgb),0.3);
  background: #0B141A;
  box-shadow: 0 30px 80px -40px rgba(var(--accent-rgb),0.6), 0 0 0 1px rgba(255,255,255,0.02);
  font-family: 'Manrope', system-ui, sans-serif;
}
.wa-head {
  display: flex; align-items: center; gap: 10px;
  background: #1F2C33; padding: 11px 14px; color: #E9EDEF;
}
.wa-back { width: 22px; height: 22px; color: #E9EDEF; flex-shrink: 0; }
.wa-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent-bright), var(--accent)); }
.wa-avatar svg { width: 22px; height: 22px; color: #fff; }
.wa-meta { flex: 1; line-height: 1.2; min-width: 0; }
.wa-meta b { display: block; font-size: 0.98rem; font-weight: 600; color: #E9EDEF; }
.wa-meta span { font-size: 0.78rem; color: #8FA3AD; }
.wa-actions { display: flex; align-items: center; gap: 18px; color: #AEBAC1; flex-shrink: 0; }
.wa-actions svg { width: 19px; height: 19px; }
.wa-body {
  padding: 16px 12px 14px; display: flex; flex-direction: column; gap: 7px;
  background-color: #0B141A;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 22px 22px;
}
.wa-date { align-self: center; font-size: 0.68rem; color: #8696A0; background: #1F2C33; padding: 5px 12px; border-radius: 8px; margin-bottom: 6px; letter-spacing: 0.04em; }
.wa-msg {
  position: relative; max-width: 82%; padding: 7px 10px 8px; border-radius: 9px;
  font-size: 0.9rem; line-height: 1.42; color: #E9EDEF; word-wrap: break-word;
  box-shadow: 0 1px 1px rgba(0,0,0,0.18);
}
.wa-msg b { font-weight: 700; color: #fff; }
.wa-msg.in { align-self: flex-start; background: #202C33; border-top-left-radius: 2px; }
.wa-msg.out { align-self: flex-end; background: #005C4B; border-top-right-radius: 2px; }
.wa-msg.in::before, .wa-msg.out::before {
  content: ''; position: absolute; top: 0; width: 9px; height: 11px;
}
.wa-msg.in::before { left: -7px; background: #202C33; clip-path: polygon(100% 0, 100% 100%, 0 0); border-top-left-radius: 2px; }
.wa-msg.out::before { right: -7px; background: #005C4B; clip-path: polygon(0 0, 100% 0, 0 100%); border-top-right-radius: 2px; }
.wa-time {
  display: inline-flex; align-items: center; gap: 3px; float: right;
  font-size: 0.64rem; color: rgba(233,237,239,0.55); margin: 6px -2px -2px 10px; line-height: 1;
}
.wa-msg.out .wa-time { color: rgba(233,237,239,0.6); }
.wa-ticks { width: 15px; height: 10px; color: #53BDEB; }
.wa-input {
  display: flex; align-items: center; gap: 9px; padding: 9px 12px;
  background: #0B141A; color: #8696A0;
}
.wa-input > svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-field { flex: 1; background: #2A3942; border-radius: 22px; padding: 10px 16px; font-size: 0.88rem; color: #8696A0; }
.wa-mic { width: 40px; height: 40px; border-radius: 50%; background: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.wa-mic svg { width: 20px; height: 20px; color: #0B141A; }
.copilot-points { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.copilot-points li { list-style: none; display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.copilot-points svg { width: 22px; height: 22px; color: var(--accent-soft); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   DEAL / PACT
   ============================================================ */
.deal { text-align: center; }
.deal .read p { color: var(--muted); margin-bottom: 18px; font-size: 1.1rem; }
.deal .pull { border: 0; padding: 0; text-align: center; max-width: 22ch; margin: 8px auto 24px; }

/* ============================================================
   VALUE STACK
   ============================================================ */
.stack-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 42px; }
.stack-item { display: flex; gap: 18px; align-items: flex-start; }
.stack-item .body { flex: 1; }
.stack-item h4 { font-size: 1.1rem; margin-bottom: 6px; }
.stack-item p { color: var(--muted); font-size: 0.92rem; }
.stack-item .val { font-family: var(--font-head); font-weight: 800; color: var(--green); white-space: nowrap; font-size: 0.95rem; }
.stack-total {
  margin-top: 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 22px 26px; border-radius: 16px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),0.12), rgba(var(--accent-rgb),0.02));
  border: 1px solid rgba(var(--accent-rgb),0.3);
}
.stack-total span { font-family: var(--font-head); font-weight: 700; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.9rem; }
.stack-total b { font-family: var(--font-head); font-weight: 900; font-size: clamp(1.5rem,3.4vw,2rem); color: #fff; }
.stack-total b s { color: var(--muted-dim); font-weight: 700; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 44px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; border: 1px solid var(--chrome-line); border-radius: 16px; background: rgba(255,255,255,0.015); }
.step .n { font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; width: 42px; height: 42px; border-radius: 50%; display:grid; place-items:center; background: linear-gradient(180deg, var(--accent-bright), var(--accent)); color:#fff; box-shadow: 0 0 24px rgba(var(--accent-rgb),0.5); margin-bottom: 16px; }
.step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--muted); }
.step:not(:last-child)::after { content:''; position:absolute; top: 49px; right: -9px; width: 18px; height: 1px; background: var(--chrome-dim); z-index:1; }

/* ============================================================
   VALUE PERSPECTIVE (agency cost)
   ============================================================ */
.perspective { background: linear-gradient(180deg, #0a1120, #060912); }
.persp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; align-items: stretch; }
.persp-card { padding: 32px 28px; border-radius: 18px; text-align: center; display:flex; flex-direction:column; justify-content:center; }
.persp-card.agency { border: 1px solid rgba(242,114,140,0.3); background: linear-gradient(180deg, rgba(242,114,140,0.06), transparent); }
.persp-card.gdv { border: 1px solid rgba(var(--accent-rgb),0.5); background: linear-gradient(180deg, rgba(var(--accent-rgb),0.1), transparent); box-shadow: 0 0 70px -30px rgba(var(--accent-rgb),0.6); }
.persp-card .label { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; }
.persp-card .big { font-family: var(--font-head); font-weight: 900; font-size: clamp(2rem,5vw,2.8rem); line-height: 1; margin-bottom: 8px; }
.persp-card.agency .big { color: var(--red); }
.persp-card.gdv .big { color: var(--accent-soft); }
.persp-card .sub { font-size: 0.9rem; color: var(--muted); }
.persp-card .meta { font-size: 0.8rem; color: var(--muted-dim); margin-top: 12px; }
.persp-vs { display:grid; place-items:center; }

/* ============================================================
   PRICING / OFFER
   ============================================================ */
.offer { padding-top: clamp(40px,7vw,80px); }
.price-box {
  max-width: 640px; margin: 44px auto 0; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb),0.5);
  background: linear-gradient(180deg, var(--panel-2), #080d18);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb),0.15), 0 40px 100px -40px rgba(var(--accent-rgb), calc(0.7*var(--glow))), 0 0 120px -30px rgba(var(--accent-rgb), calc(0.4*var(--glow)));
}
.price-head { background: linear-gradient(90deg, rgba(var(--accent-rgb),0.18), rgba(var(--accent-rgb),0.04)); padding: 20px; text-align: center; border-bottom: 1px solid rgba(var(--accent-rgb),0.25); }
.price-head .label { font-family: var(--font-head); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.92rem; color:#fff; }
.price-head .sub { font-size: 0.82rem; color: var(--accent-soft); margin-top: 4px; }
.price-body { padding: clamp(26px,5vw,40px); text-align: center; }
.mini-stack { list-style: none; text-align: left; max-width: 420px; margin: 0 auto 28px; display:flex; flex-direction:column; gap:11px; }
.mini-stack li { display: flex; align-items: center; gap: 11px; font-size: 0.95rem; color: var(--muted); }
.mini-stack li svg { width: 19px; height: 19px; color: var(--green); flex-shrink:0; }
.mini-stack li b { color: #fff; font-weight: 600; }
.mini-stack li .v { margin-left: auto; color: var(--muted-dim); font-size: 0.85rem; }
.price-anchor { font-family: var(--font-head); font-size: 1.1rem; color: var(--muted-dim); margin-bottom: 2px; }
.price-anchor s { text-decoration-thickness: 2px; }
.price-now { font-family: var(--font-head); font-weight: 900; line-height: 1; margin: 6px 0; }
.price-now .cur { font-size: clamp(1.4rem,3vw,1.8rem); color: var(--accent-soft); vertical-align: top; }
.price-now .amt { font-size: clamp(3.6rem,11vw,5.2rem); color: var(--accent-bright); text-shadow: 0 0 50px rgba(var(--accent-rgb), calc(0.6*var(--glow))); letter-spacing: -0.02em; }
.price-installments { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: #fff; margin-bottom: 6px; }
.price-installments span { color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.price-reinforce { font-size: 0.92rem; color: var(--green); margin-bottom: 26px; font-weight: 600; }
.pay-seals { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 22px; }
.pay-seals .ps { display:flex; align-items:center; gap:7px; font-size:0.78rem; color: var(--muted); }
.pay-seals .ps svg { width: 16px; height: 16px; color: var(--chrome); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee { text-align: center; }
.shield {
  width: 120px; height: 120px; margin: 0 auto 28px; display:grid; place-items:center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, rgba(var(--accent-rgb),0.25), rgba(var(--accent-rgb),0.03));
  border: 1px solid rgba(var(--accent-rgb),0.4);
  box-shadow: 0 0 60px rgba(var(--accent-rgb), calc(0.4*var(--glow)));
}
.shield svg { width: 60px; height: 60px; color: var(--accent-soft); }
.guarantee .read p { color: var(--muted); font-size: 1.1rem; margin-bottom: 16px; }
.guarantee .read p:last-child { margin-bottom: 0; }

/* ============================================================
   SCARCITY / CLOSE
   ============================================================ */
.scarcity { background: linear-gradient(180deg, #0a1120, #060912); }
.scarcity-box {
  max-width: 760px; margin: 0 auto; padding: clamp(28px,5vw,44px); border-radius: 20px;
  border: 1px solid rgba(255,170,80,0.3); background: linear-gradient(180deg, rgba(255,160,60,0.06), transparent);
  text-align: center;
}
.scarcity-box .warn { display: inline-flex; align-items:center; gap:10px; color:#ffd9b0; font-weight:700; font-family:var(--font-head); margin-bottom:16px; letter-spacing:0.04em; }
.scarcity-box .warn svg { width: 22px; height: 22px; }
.scarcity p { color: var(--muted); margin-bottom: 16px; }
.scarcity .signoff { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: clamp(1.1rem,2.4vw,1.4rem); margin-top: 24px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 42px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--chrome-line); border-radius: 14px; background: rgba(255,255,255,0.015); overflow: hidden; transition: border-color .25s; }
.faq-item.open { border-color: rgba(var(--accent-rgb),0.45); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: #fff; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-head); font-weight: 700; font-size: clamp(1rem,2.2vw,1.12rem); }
.faq-q .ic { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--chrome-dim); display:grid; place-items:center; transition: transform .3s, background .3s, border-color .3s; }
.faq-q .ic svg { width: 14px; height: 14px; color: var(--accent-soft); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-q .ic svg { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 22px; color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #04060c; border-top: 1px solid var(--chrome-line); padding: clamp(56px,8vw,90px) 0 40px; }
.footer-cta { text-align: center; margin-bottom: 56px; }
.footer-summary { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 26px 0 8px; }
.footer-summary .fs { display:flex; align-items:center; gap:8px; font-size:0.85rem; color: var(--muted); border:1px solid var(--chrome-line); padding:9px 16px; border-radius:100px; }
.footer-summary .fs svg { width:16px; height:16px; color: var(--accent-soft); }
.footer-bottom { border-top: 1px solid var(--chrome-line); padding-top: 36px; text-align: center; display:flex; flex-direction:column; align-items:center; gap: 18px; }
.footer-logo { width: 190px; opacity: 0.94; }
.footer-tag { font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-dim); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; font-size: 0.82rem; color: var(--muted); }
.footer-links a:hover { color: var(--accent-soft); }
.footer-disclaimer { max-width: 680px; font-size: 0.76rem; color: var(--muted-dim); line-height: 1.6; }
.footer-copy { font-size: 0.78rem; color: var(--muted-dim); }
.footer-signoff { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1.1rem; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(6,9,18,0.4), rgba(6,9,18,0.96) 40%);
  backdrop-filter: blur(10px); border-top: 1px solid rgba(var(--accent-rgb),0.25);
  transform: translateY(120%); transition: transform .4s ease; display: none;
}
.sticky-cta.show { transform: none; }
.sticky-cta .btn-cta { width: 100%; padding: 16px; font-size: 1rem; }
.sticky-cta .mini { display:flex; align-items:center; justify-content:space-between; margin-bottom: 8px; font-size: 0.8rem; }
.sticky-cta .mini b { color: var(--accent-soft); font-family: var(--font-head); }
.sticky-cta .mini s { color: var(--muted-dim); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .shopping-grid, .story-grid, .copilot-grid { grid-template-columns: 1fr; }
  .story-grid .story-photo { max-width: 440px; margin: 0 auto; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step:not(:last-child)::after { display: none; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .pain-grid, .compare, .stack-grid, .persp-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .persp-vs { padding: 4px 0; }
  .story-stat { position: static; margin-top: 12px; }
  .sticky-cta { display: block; }
  section { padding: clamp(52px,11vw,80px) 0; }
  .footer { padding-bottom: 96px; }
  /* Mobile-first hero: vídeo vertical em foco + CTA ao alcance */
  .hero { padding-top: 18px; padding-bottom: 40px; }
  .urgency-pill { font-size: 0.74rem; padding: 8px 14px; margin-bottom: 18px; }
  .vsl-wrap { width: 100%; max-width: 100%; margin: 20px auto 22px; }
  .cta-block .btn-cta { width: 100%; padding: 18px 20px; }
  .btn-cta { font-size: 1rem; }
  .seal { font-size: 0.74rem; text-align: center; }
}
@media (max-width: 420px) {
  .metrics-grid, .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   VSL GATE — só o vídeo até 12:05; resto revela depois
   ============================================================ */
/* Enquanto travado, esconde tudo menos o hero (e dentro do hero, só o vídeo) */
body.gated .page > *:not(.hero) { display: none !important; }
body.gated .sticky-cta { display: none !important; }
body.gated .hero .cta-block { display: none !important; }
body.gated .hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: clamp(20px, 4vh, 40px); padding-bottom: clamp(20px, 4vh, 40px);
}
body.gated .hero .vsl-wrap { margin-top: clamp(16px,3vh,28px); margin-bottom: 0; }

/* Aviso discreto "continue assistindo" sob o vídeo durante o gate */
.gate-hint {
  display: none; align-items: center; justify-content: center; gap: 9px;
  margin: 22px auto 0; max-width: 360px;
  font-size: 0.82rem; color: var(--muted); text-align: center; line-height: 1.4;
}
body.gated .gate-hint { display: flex; }
.gate-hint svg { width: 17px; height: 17px; color: var(--accent-soft); flex-shrink: 0; }
.gate-hint .lockdot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: blink 1.4s ease-in-out infinite; }

/* Animação de "destravou" quando o conteúdo é liberado */
body.ungated .page > *:not(.hero) { animation: gateReveal .7s cubic-bezier(.2,.7,.2,1) both; }
@keyframes gateReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  body.ungated .page > *:not(.hero) { animation: none; }
}
