/* ════════════════════════════════════════════════════════════
   MEMÓRIA BLINDADA — CSS UNIFICADO
   Root único · Fontes otimizadas · Animações sem delay no LCP
   ════════════════════════════════════════════════════════════ */

/* ── FONT PRELOAD (cole isso no <head> ANTES de tudo) ────────
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
──────────────────────────────────────────────────────────── */

:root {
  /* Cores base */
  --black:   #0a0a0a;
  --bg:      #0d0d0d;
  --deep:    #111118;
  --surface: #16161f;
  --card:    #1c1c28;

  /* Bordas */
  --border:        #2a2a3a;
  --border-subtle: rgba(255,255,255,.09);

  /* Acento principal */
  --accent:        #f5c842;
  --accent2:       #ff6b35;
  --yellow:        #f5c030;
  --yellow-dim:    rgba(245,192,48,.12);
  --yellow-border: rgba(245,192,48,.3);

  /* Feedback */
  --green:          #2deb8f;
  --green-alt:      #4caf50;
  --red:            #ff4444;
  --danger:         rgba(239,83,80,.12);
  --danger-border:  rgba(239,83,80,.3);
  --danger-text:    #ef9a9a;

  /* Texto */
  --text:  #e8e8f0;
  --white: #ffffff;
  --muted: #888899;

  /* Tipografia */
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* Noise texture de fundo — não bloqueia LCP */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.4;
}

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px 32px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--accent); letter-spacing: -0.5px;
}
.nav-logo span, .nav-logo em { color: var(--white); font-style: normal; }
.nav-cta {
  background: var(--accent); color: var(--black);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  padding: 10px 22px; border-radius: 6px; border: none; cursor: pointer;
  letter-spacing: 0.5px; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, opacity .15s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245,200,66,0.4);
  opacity: .88;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  position: relative; text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(245,200,66,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255,107,53,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245,192,48,.07) 0%, transparent 70%);
}

.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(245,200,66,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,200,66,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  color: var(--accent); font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 32px; position: relative;
  /* SEM delay — badge não bloqueia LCP mas aparece mais rápido */
  animation: fadeDown 0.5s ease both;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; animation: pulse 2s infinite;
}

/* H1 — elemento LCP: sem delay, sem opacity:0 inicial */
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 7vw, 80px); line-height: 1.0; letter-spacing: -2px;
  color: var(--white); margin-bottom: 12px; position: relative;
  /* Removido delay e substituído fill-mode por forward — LCP mede quando visível */
  animation: fadeDown 0.5s ease forwards;
}
.hero h1 em { font-style: normal; color: var(--accent); display: block; }
.hero h1 .line2 {
  display: block; font-size: clamp(30px, 5vw, 0.65em);
  color: var(--muted); font-size: 0.65em;
  font-weight: 800; letter-spacing: -1px; margin-top: 4px;
}

/* Subheadline */
.hero-sub {
  font-size: clamp(16px, 2.2vw, 21px); color: var(--muted);
  max-width: 620px; margin: 24px auto 0;
  font-weight: 300; line-height: 1.65; position: relative;
  animation: fadeUp 0.6s 0.15s ease both;
}
.hero-sub strong { color: var(--text); font-weight: 500; }

/* Trust bar */
.trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 0 auto 16px; flex-wrap: wrap; position: relative;
}
.trust-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--muted);
}
.trust-item svg { color: var(--green-alt); flex-shrink: 0; }
.trust-item .stars { color: var(--accent); letter-spacing: 1px; font-size: 13px; }
.trust-item strong { color: #ccc; font-weight: 600; }
.trust-sep { width: 1px; height: 12px; background: var(--border-subtle); }

/* Social strip */
.social-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin: 0 auto 24px; position: relative;
}
.avatars { display: flex; }
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--black);
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-left: -8px;
  font-family: var(--font-display);
}
.avatars .avatar:first-child { margin-left: 0; }
.av1 { background: #2e7d32; }
.av2 { background: #f57f17; }
.av3 { background: #1565c0; }
.av4 { background: #6a1b9a; }
.social-text { font-size: 12.5px; color: var(--muted); }
.social-text strong { color: #ccc; font-weight: 600; }

/* Format pill */
.format-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,235,143,0.08);
  border: 1px solid rgba(45,235,143,0.25);
  color: var(--green); font-size: 13px; font-weight: 500;
  padding: 8px 16px; border-radius: 8px;
  margin: 20px auto 0; position: relative;
  animation: fadeUp 0.6s 0.25s ease both;
}
.format-pill svg { flex-shrink: 0; color: #aaa; }

/* CTA Group */
.hero-cta-group {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: 44px; position: relative;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* Botão principal */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--black);
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  padding: 18px 44px; border-radius: 10px; border: none; cursor: pointer;
  letter-spacing: -0.3px; text-decoration: none;
  max-width: 460px; width: 100%; justify-content: center;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, opacity .15s;
  animation: cta-pulse 2.5s 2s infinite;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s 3s infinite;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,200,66,0.5); opacity: .92; }
.btn-primary:active { transform: scale(.98); }
.btn-arrow { font-size: 20px; transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* Urgência */
.urgency-bar {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--danger); border: 0.5px solid var(--danger-border);
  border-radius: 6px; padding: 8px 16px;
  font-size: 12.5px; color: var(--danger-text);
  max-width: 460px; width: 100%;
}
.urgency-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ef5350; flex-shrink: 0;
  animation: pulse 1.4s ease-in-out infinite;
}
.urgency-bar strong { color: #fff; font-weight: 700; }
#countdown { font-variant-numeric: tabular-nums; }

/* Garantia */
.hero-guarantee {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.hero-guarantee svg { color: var(--green); }

/* ── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes pulse      { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }
@keyframes fadeDown   { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeUp     { from{opacity:0;transform:translateY(30px)}  to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn     { from{opacity:0} to{opacity:1} }
@keyframes shimmer    { to{transform:translateX(100%)} }
@keyframes timerTick  { 0%,100%{opacity:1} 50%{opacity:.7} }
@keyframes shrink     { from{width:100%} to{width:0%} }
@keyframes cta-pulse  { 0%,100%{box-shadow:0 0 0 0 rgba(245,200,66,.4)} 50%{box-shadow:0 0 0 16px rgba(245,200,66,0)} }

/* ── VSL ────────────────────────────────────────────────────── */
.vsl-section {
  background: var(--deep);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 24px; position: relative; z-index: 1;
}
.vsl-inner { max-width: 860px; margin: 0 auto; }
.vsl-label {
  text-align: center; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 16px;
}
.vsl-headline {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 3.5vw, 38px); line-height: 1.1; letter-spacing: -1px;
  color: var(--white); text-align: center; margin-bottom: 10px;
}
.vsl-sub { text-align: center; color: var(--muted); font-size: 16px; margin-bottom: 36px; }
.vsl-wrapper {
  max-width: 800px; margin: auto;
  aspect-ratio: 16/9; position: relative; overflow: hidden;
  background: #000; border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(245,200,66,0.07);
}
.vsl-wrapper iframe,
.vsl-wrapper video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.vsl-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--card); gap: 16px;
}
.vsl-play {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(245,200,66,0.4);
  animation: cta-pulse 2.5s infinite;
}
.vsl-play:hover { transform: scale(1.07); }
.vsl-play svg { margin-left: 6px; }
.vsl-duration { font-size: 13px; color: var(--muted); }
.vsl-cta-below { text-align: center; margin-top: 32px; }
.vsl-cta-below p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

/* Thumb de vídeo */
.video-wrapper { max-width: 800px; margin: auto; aspect-ratio: 16/9; position: relative; overflow: hidden; }
.video-thumb { position: relative; width: 100%; height: 100%; cursor: pointer; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.thumb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); border-radius: 12px; }
.thumb-text { position: absolute; bottom: 24px; left: 24px; right: 24px; color: #fff; z-index: 2; }
.thumb-badge {
  display: inline-block; background: #ff3b3b; color: #fff;
  font-size: 12px; font-weight: 700; padding: 4px 10px;
  border-radius: 6px; margin-bottom: 10px;
}
.thumb-text h2 { font-size: 28px; line-height: 1.2; margin: 0; font-weight: 800; }
.thumb-text h2 span { color: #ffd84d; }
.thumb-text p { margin-top: 8px; font-size: 16px; opacity: .95; }
.play-button {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: rgba(0,0,0,.7); color: #fff; font-size: 30px;
  padding: 20px 26px; border-radius: 50%;
}

/* ── SOCIAL PROOF BAR ───────────────────────────────────────── */
.proof-bar {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 40px; position: relative; z-index: 1;
}
.proof-item { display: flex; align-items: center; gap: 10px; }
.proof-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--white); }
.proof-label { font-size: 13px; color: var(--muted); line-height: 1.3; }
.proof-sep { width: 1px; height: 32px; background: var(--border); }
.stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }

/* ── SECTIONS COMUNS ────────────────────────────────────────── */
section { position: relative; z-index: 1; }
.section-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 12px;
}

/* ── PAIN ───────────────────────────────────────────────────── */
.pain {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--deep) 100%);
}
.pain h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.1; letter-spacing: -1.5px;
  color: var(--white); margin-bottom: 20px;
}
.pain-intro { color: var(--muted); font-size: 18px; max-width: 560px; margin-bottom: 60px; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.pain-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  transition: border-color 0.3s, transform 0.3s; cursor: default;
}
.pain-card:hover { border-color: rgba(255,68,68,0.4); transform: translateY(-4px); }
.pain-icon { font-size: 32px; margin-bottom: 16px; }
.pain-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--white); margin-bottom: 10px; }
.pain-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.pain-stat {
  margin-top: 16px; padding: 10px 14px;
  background: rgba(255,68,68,0.08); border: 1px solid rgba(255,68,68,0.2);
  border-radius: 8px; color: var(--red); font-size: 13px; font-weight: 500;
}

/* ── AGITATE ────────────────────────────────────────────────── */
.agitate { padding: 80px 0; background: var(--deep); border-top: 1px solid var(--border); }
.agitate-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; text-align: center; }
.agitate h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 4vw, 46px); line-height: 1.1; letter-spacing: -1.5px;
  color: var(--white); margin-bottom: 24px;
}
.agitate h2 em { font-style: normal; color: var(--red); }
.agitate p { color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* ── SOLUTION ───────────────────────────────────────────────── */
.solution {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--deep) 0%, var(--black) 100%);
}
.solution h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 52px); line-height: 1.05; letter-spacing: -2px;
  color: var(--white); margin-bottom: 16px;
}
.solution h2 em { font-style: normal; color: var(--accent); }
.solution-intro { color: var(--muted); font-size: 18px; max-width: 580px; margin-bottom: 70px; }

.features { display: flex; flex-direction: column; gap: 0; }
.feature-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  padding: 70px 0; border-bottom: 1px solid var(--border); align-items: center;
}
.feature-item:nth-child(even) { direction: rtl; }
.feature-item:nth-child(even) > * { direction: ltr; }
.feature-item:last-child { border-bottom: none; }
.feature-tag {
  display: inline-block;
  background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.2);
  color: var(--accent); font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 4px; margin-bottom: 16px;
}
.feature-item h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 3vw, 34px); line-height: 1.1; letter-spacing: -1px;
  color: var(--white); margin-bottom: 16px;
}
.feature-item h3 em { font-style: normal; color: var(--accent); }
.feature-item p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.feature-benefit {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text); margin-bottom: 10px;
}
.feature-benefit svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* Mock UI */
.mock-ui {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; position: relative; overflow: hidden;
}
.mock-ui::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.mock-header { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.curve-chart { height: 120px; position: relative; }
.curve-svg { width: 100%; height: 100%; }
.timer-display {
  text-align: center; padding: 20px;
  font-family: var(--font-display); font-size: 56px; font-weight: 800;
  color: var(--accent); letter-spacing: -3px; animation: timerTick 1s infinite;
}
.timer-label { text-align: center; font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.timer-bar { height: 4px; background: var(--border); border-radius: 2px; margin-top: 16px; overflow: hidden; }
.timer-fill { height: 100%; background: var(--accent); border-radius: 2px; animation: shrink 10s linear infinite; }
.question-card { background: var(--surface); border-radius: 12px; padding: 20px; margin-bottom: 12px; }
.question-text { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.question-input {
  width: 100%; background: var(--border); border: none; border-radius: 8px;
  padding: 10px 14px; color: var(--white); font-size: 15px; outline: none;
}
.question-tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.qtag { font-size: 12px; padding: 4px 10px; border-radius: 20px; font-weight: 500; }
.qtag-hard   { background: rgba(255,68,68,0.15);   color: var(--red);    border: 1px solid rgba(255,68,68,0.2); }
.qtag-medium { background: rgba(245,200,66,0.1);   color: var(--accent); border: 1px solid rgba(245,200,66,0.2); }
.qtag-easy   { background: rgba(45,235,143,0.1);   color: var(--green);  border: 1px solid rgba(45,235,143,0.2); }
.dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.dash-stat { background: var(--surface); border-radius: 10px; padding: 14px; }
.dash-stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--white); }
.dash-stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.dash-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.dash-bar-label { font-size: 12px; color: var(--muted); width: 70px; flex-shrink: 0; }
.dash-bar-track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: 3px; }

/* ── COMPARISON ─────────────────────────────────────────────── */
.comparison { padding: 100px 0; background: var(--deep); }
.comparison h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 4vw, 46px); line-height: 1.1; letter-spacing: -1.5px;
  color: var(--white); margin-bottom: 16px;
}
.comparison-table {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 40px;
}
.comp-header {
  padding: 20px 24px; font-family: var(--font-display); font-weight: 700; font-size: 15px;
  background: var(--card);
}
.comp-header:nth-child(2) { text-align: center; color: var(--muted); font-size: 13px; font-weight: 500; }
.comp-header:nth-child(3) {
  text-align: center; background: rgba(245,200,66,0.08);
  border-left: 2px solid var(--accent); color: var(--accent);
}
.comp-cell {
  padding: 16px 24px; border-top: 1px solid var(--border);
  font-size: 14px; color: var(--muted);
}
.comp-cell:nth-child(3n+2) { text-align: center; }
.comp-cell:nth-child(3n+3) {
  text-align: center;
  background: rgba(245,200,66,0.04);
  border-left: 2px solid var(--accent); color: var(--text);
}
.comp-check { color: var(--green); font-size: 18px; }
.comp-x     { color: var(--red);   font-size: 18px; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials { padding: 100px 0; background: var(--black); }
.testimonials h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 4vw, 46px); line-height: 1.1; letter-spacing: -1.5px;
  color: var(--white); text-align: center; margin-bottom: 16px;
}
.testimonials-sub { text-align: center; color: var(--muted); font-size: 16px; margin-bottom: 60px; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testi-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover { border-color: rgba(245,200,66,0.3); transform: translateY(-4px); }
.testi-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-text em { font-style: normal; color: var(--accent); font-weight: 500; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--black);
  flex-shrink: 0; overflow: hidden; position: relative;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 500; font-size: 14px; color: var(--white); }
.testi-meta { font-size: 12px; color: var(--muted); }
.testi-result {
  margin-top: 16px; padding: 10px 14px;
  background: rgba(45,235,143,0.08); border: 1px solid rgba(45,235,143,0.2);
  border-radius: 8px; font-size: 13px; color: var(--green); font-weight: 500;
}
.testi-source {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--muted); margin-top: 10px;
  padding: 3px 8px; border-radius: 4px; border: 1px solid var(--border);
}
.testi-source svg { opacity: 0.6; }

/* ── OBJECTIONS ─────────────────────────────────────────────── */
.objections { padding: 100px 0; background: var(--deep); }
.objections h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 4vw, 46px); line-height: 1.1; letter-spacing: -1.5px;
  color: var(--white); margin-bottom: 60px;
}
.obj-list { display: flex; flex-direction: column; gap: 0; max-width: 720px; }
.obj-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.obj-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--white);
  transition: color 0.2s; gap: 12px;
}
.obj-q:hover { color: var(--accent); }
.obj-icon { font-size: 22px; transition: transform 0.3s; color: var(--muted); flex-shrink: 0; }
.obj-item.open .obj-icon { transform: rotate(45deg); color: var(--accent); }
.obj-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--muted); font-size: 15px; line-height: 1.7;
}
.obj-a-inner { padding: 0 0 22px; }
.obj-a-inner strong { color: var(--text); }
.obj-item.open .obj-a { max-height: 400px; }

/* ── GUARANTEE ──────────────────────────────────────────────── */
.guarantee-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(45,235,143,0.04) 0%, transparent 60%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.guarantee-inner {
  max-width: 680px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: flex-start; gap: 28px;
}
.guarantee-icon { font-size: 64px; flex-shrink: 0; }
.guarantee-text h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -1px;
  color: var(--white); margin-bottom: 12px;
}
.guarantee-text p  { color: var(--muted); font-size: 16px; line-height: 1.7; }
.guarantee-text strong { color: var(--green); }

/* ── PRICING ────────────────────────────────────────────────── */
.pricing { padding: 100px 0; background: var(--black); }
.pricing-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.pricing h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 50px); line-height: 1.1; letter-spacing: -2px;
  color: var(--white); margin-bottom: 14px;
}
.pricing-sub { color: var(--muted); font-size: 17px; line-height: 1.6; }
.price-card-single {
  max-width: 560px; margin: 0 auto;
  background: var(--card); border: 2px solid var(--accent);
  border-radius: 24px; padding: 48px 44px; position: relative;
  box-shadow: 0 0 60px rgba(245,200,66,0.08);
}
.popular-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--black);
  font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; padding: 6px 22px; border-radius: 20px; white-space: nowrap;
}
.price-plan { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 16px; text-align: center; }
.price-anchor { text-align: center; margin-bottom: 4px; font-size: 18px; color: var(--muted); }
.price-anchor s { color: rgba(255,100,100,0.6); }
.price-amount {
  font-family: var(--font-display); font-weight: 800; font-size: 80px;
  color: var(--white); letter-spacing: -4px; line-height: 1;
  display: flex; align-items: flex-start; justify-content: center; gap: 4px;
}
.price-amount sup { font-size: 28px; vertical-align: top; margin-top: 14px; color: var(--accent); }
.price-once {
  text-align: center; font-size: 14px; color: var(--green); font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin: 10px 0 6px;
}
.price-equiv     { text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.price-divider   { height: 1px; background: var(--border); margin: 28px 0; }
.price-installment { text-align: center; margin: 8px 0 4px; font-size: 15px; color: var(--text); }
.price-installment strong { color: var(--accent); font-family: var(--font-display); }
.price-bonus {
  background: rgba(245,200,66,0.06); border: 1px solid rgba(245,200,66,0.2);
  border-radius: 12px; padding: 16px 20px; margin-bottom: 28px;
}
.price-bonus-title { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.price-bonus-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); margin-bottom: 8px; }
.price-bonus-item:last-child { margin-bottom: 0; }
.price-bonus-item svg { flex-shrink: 0; margin-top: 3px; }
.price-bonus-value { margin-left: auto; font-size: 12px; color: var(--muted); white-space: nowrap; padding-left: 8px; }
.price-bonus-total {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; margin-top: 8px; border-top: 1px solid rgba(245,200,66,0.2); font-size: 13px;
}
.price-bonus-total span:first-child { color: var(--muted); }
.price-bonus-total span:last-child  { color: var(--accent); font-family: var(--font-display); font-weight: 700; }
.btn-featured {
  display: block; width: 100%; text-align: center;
  background: var(--accent); color: var(--black);
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  padding: 14px; border-radius: 10px; cursor: pointer; text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-featured:hover { box-shadow: 0 6px 24px rgba(245,200,66,0.4); transform: translateY(-1px); }
.payment-badges {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap; margin-top: 16px;
}
.pay-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--muted); padding: 5px 10px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px;
}
.pay-badge svg { flex-shrink: 0; }

/* ── FINAL CTA ──────────────────────────────────────────────── */
.final-cta {
  padding: 120px 0 100px; background: var(--deep);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(245,200,66,0.07) 0%, transparent 70%);
}
.final-cta h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 6vw, 70px); line-height: 1.0; letter-spacing: -2.5px;
  color: var(--white); max-width: 800px; margin: 0 auto 20px; position: relative;
}
.final-cta h2 em { font-style: normal; color: var(--accent); }
.final-cta p { color: var(--muted); font-size: 18px; margin-bottom: 44px; position: relative; }
.real-urgency {
  background: rgba(245,200,66,0.07); border: 1px solid rgba(245,200,66,0.25);
  border-radius: 10px; padding: 14px 20px; margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text); position: relative;
}
.real-urgency strong { color: var(--accent); }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--black); border-top: 1px solid var(--border);
  padding: 48px 24px 32px; text-align: center;
}
.footer-inner { max-width: 700px; margin: 0 auto; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--accent); margin-bottom: 20px; }
.footer-logo span, .footer-logo em { color: var(--white); font-style: normal; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-legal {
  font-size: 12px; color: var(--muted); line-height: 1.8;
  border-top: 1px solid var(--border); padding-top: 24px; margin-top: 8px;
}
.footer-legal a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.footer-cnpj { font-size: 11px; color: rgba(136,136,153,0.7); margin-top: 8px; }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVE ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feature-item { gap: 40px; }
  .price-card-single { padding: 48px 32px; }
}

@media (max-width: 768px) {
  .nav { padding: 12px 16px; flex-wrap: wrap; }
  .nav-logo { font-size: 15px; }
  .nav-cta { font-size: 11px; padding: 8px 14px; letter-spacing: 0; }
  .hero { padding: 100px 20px 60px; }
  .badge { font-size: 10px; padding: 6px 14px; text-align: center; }
  .hero h1 { letter-spacing: -1.5px; }
  .btn-primary { font-size: 15px; padding: 16px 28px; width: 100%; justify-content: center; }
  .hero-cta-group { width: 100%; }
  .vsl-section { padding: 48px 16px; }
  .proof-bar { gap: 16px; padding: 16px; }
  .proof-sep, .trust-sep { display: none; }
  .proof-num { font-size: 22px; }
  .proof-label { font-size: 12px; }
  .pain { padding: 60px 0; }
  .pain-intro { font-size: 16px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { padding: 24px; }
  .agitate { padding: 60px 0; }
  .agitate p { font-size: 16px; }
  .solution { padding: 60px 0; }
  .solution-intro { font-size: 16px; margin-bottom: 40px; }
  .feature-item { grid-template-columns: 1fr; direction: ltr !important; gap: 28px; padding: 48px 0; }
  .feature-item:nth-child(even) { direction: ltr; }
  .feature-item h3 { font-size: clamp(20px, 5vw, 28px); }
  .timer-display { font-size: 44px; }
  .comparison { padding: 60px 0; }
  .comparison-table { grid-template-columns: 1.4fr 0.8fr 0.8fr; }
  .comp-header, .comp-cell { padding: 10px; font-size: 12px; }
  .comp-header { padding: 14px 10px; }
  .comp-check, .comp-x { font-size: 16px; }
  .testimonials { padding: 60px 0; }
  .testimonials-sub { font-size: 14px; margin-bottom: 36px; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 22px; }
  .objections { padding: 60px 0; }
  .objections h2 { margin-bottom: 36px; }
  .obj-q { font-size: 15px; padding: 18px 0; }
  .obj-a-inner { font-size: 14px; }
  .guarantee-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .guarantee-icon { font-size: 48px; }
  .guarantee-text h3 { font-size: 22px; }
  .guarantee-text p { font-size: 15px; }
  .pricing { padding: 60px 0; }
  .pricing-sub { font-size: 15px; }
  .price-card-single { padding: 44px 22px 32px; margin: 0 4px; }
  .popular-badge { font-size: 10px; padding: 5px 14px; white-space: normal; text-align: center; max-width: 90%; }
  .price-amount { font-size: 64px; }
  .price-amount sup { font-size: 22px; margin-top: 10px; }
  .price-bonus-item { font-size: 13px; }
  .btn-featured { font-size: 15px !important; padding: 16px !important; }
  .final-cta { padding: 80px 20px 60px; }
  .final-cta p { font-size: 16px; }
  .final-cta .btn-primary { font-size: 15px; padding: 16px 24px; width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .nav-logo { font-size: 14px; }
  .nav-cta { font-size: 10px; padding: 7px 12px; width: 100%; text-align: center; }
  .nav { flex-direction: column; align-items: center; gap: 8px; }
  .hero { padding: 90px 16px 50px; }
  .badge { font-size: 9px; padding: 6px 12px; letter-spacing: 0.5px; }
  .proof-bar { justify-content: space-around; gap: 10px; }
  .proof-item { flex-direction: column; align-items: center; text-align: center; gap: 4px; }
  .pain { padding: 50px 0; }
  .pain-card { padding: 20px; }
  .pain-stat { font-size: 12px; }
  .comparison-table { grid-template-columns: 1.2fr 0.7fr 0.9fr; }
  .comp-header, .comp-cell { padding: 8px; font-size: 11px; }
  .mock-ui { padding: 20px 16px; }
  .timer-display { font-size: 36px; padding: 12px; }
  .dash-stat-num { font-size: 22px; }
  .price-card-single { padding: 40px 16px 28px; }
  .price-amount { font-size: 56px; }
  .final-cta { padding: 60px 16px 50px; }
}
.cta-float {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 998;
      padding: 12px 16px 16px;
      background: linear-gradient(to top, rgba(10,10,10,0.98) 70%, transparent);
      pointer-events: none;
    }
    .cta-float a {
      pointer-events: all;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      background: var(--accent);
      color: #0a0a0a;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 15px;
      padding: 16px;
      border-radius: 10px;
      text-decoration: none;
      box-shadow: 0 -4px 32px rgba(245,200,66,0.25);
    }
    @media (max-width: 768px) {
      .cta-float { display: block; }
      /* espaço para o botão não cobrir conteúdo no final */
      footer { padding-bottom: 90px; }
    }