/* =============================================
   VARIÁVEIS E RESET
============================================= */
:root {
  --purple:     #7c3aed;
  --purple-lt:  #a78bfa;
  --purple-dk:  #4c1d95;
  --accent:     #f59e0b;
  --green:      #10b981;
  --bg:         #0a0a12;
  --surface:    #12121e;
  --surface2:   #1c1c2e;
  --border:     rgba(124,58,237,.25);
  --text:       #e8e8f0;
  --text-muted: #8888aa;
  --white:      #ffffff;
  --radius:     14px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.2; }
a { color: var(--purple-lt); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* =============================================
   UTILITÁRIOS
============================================= */
.container { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 20px; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }

/* =============================================
   BOTÕES
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, #9333ea 100%);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(124,58,237,.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,.6);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--purple-lt);
  color: var(--purple-lt);
}
.btn-secondary:hover { background: rgba(124,58,237,.12); text-decoration: none; }

/* Botão de compra principal */
.btn-unlock {
  background: linear-gradient(135deg, #d97706 0%, var(--accent) 100%);
  color: #0a0a12;
  font-size: 1.15rem;
  padding: 20px 40px;
  box-shadow: 0 4px 28px rgba(245,158,11,.5);
  width: 100%;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: -.3px;
}
.btn-unlock:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(245,158,11,.65);
  text-decoration: none;
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,18,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--purple-lt); }
.navbar-links { display: flex; gap: 24px; font-size: .875rem; }
.navbar-links a { color: var(--text-muted); }
.navbar-links a:hover { color: var(--white); text-decoration: none; }

/* =============================================
   ESPAÇO DE ANÚNCIO (AdSense-ready)
============================================= */
.ad-slot {
  width: 100%;
  min-height: 90px;
  background: var(--surface2);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 32px 0;
  overflow: hidden;
}

/* =============================================
   HERO / HOME
============================================= */
#page-home { animation: fadeUp .5s ease both; }

.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(124,58,237,.18);
  border: 1px solid var(--border);
  color: var(--purple-lt);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 em { color: var(--purple-lt); font-style: normal; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 36px;
}
.hero-cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}
.stat-label { font-size: .8rem; color: var(--text-muted); }

/* BENEFÍCIOS */
.benefits { padding: 60px 0; }
.benefits h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 40px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); border-color: var(--purple-lt); }
.benefit-icon { font-size: 2rem; margin-bottom: 12px; }
.benefit-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.benefit-card p { font-size: .875rem; color: var(--text-muted); }

/* =============================================
   QUIZ
============================================= */
#page-quiz { animation: fadeUp .4s ease both; }

.quiz-header { padding: 48px 0 32px; }
.quiz-progress-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.quiz-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--surface2);
  border-radius: 99px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-lt));
  border-radius: 99px;
  transition: width .4s ease;
}
.quiz-progress-label { font-size: .8rem; color: var(--text-muted); white-space: nowrap; }

.quiz-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px 32px;
}
.quiz-question-num {
  font-size: .8rem;
  color: var(--purple-lt);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.quiz-question-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}
.quiz-options { display: grid; gap: 12px; }
.quiz-option {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  font-size: .95rem;
  color: var(--text);
}
.quiz-option:hover {
  border-color: var(--purple-lt);
  background: rgba(124,58,237,.1);
  transform: translateX(4px);
}
.quiz-option.selected {
  border-color: var(--purple);
  background: rgba(124,58,237,.2);
  color: var(--white);
}
.quiz-option-letter {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.quiz-option.selected .quiz-option-letter {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}

/* =============================================
   TELA DE ANÁLISE (NOVA — melhoria 1)
   Simula processamento de IA entre quiz e resultado
============================================= */
#page-analysis {
  animation: fadeUp .4s ease both;
}

.analysis-wrap {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

/* Anel giratório animado */
.analysis-spinner {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 36px;
}
.analysis-spinner::before,
.analysis-spinner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.analysis-spinner::before {
  border: 3px solid var(--surface2);
}
.analysis-spinner::after {
  border: 3px solid transparent;
  border-top-color: var(--purple-lt);
  border-right-color: var(--purple);
  animation: spin 1s linear infinite;
}
.analysis-spinner-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.analysis-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.analysis-subtitle {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Lista de etapas com checkmark animado */
.analysis-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  min-width: 280px;
  max-width: 380px;
  width: 100%;
}
.analysis-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .4s ease, transform .4s ease, border-color .3s ease, color .3s ease;
}
.analysis-step.visible {
  opacity: 1;
  transform: translateX(0);
}
.analysis-step.done {
  border-color: rgba(16,185,129,.35);
  color: var(--text);
}
.analysis-step-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
  transition: background .3s ease, border-color .3s ease;
}
.analysis-step.done .analysis-step-icon {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* Barra de progresso da análise */
.analysis-progress-wrap {
  width: 100%;
  max-width: 380px;
  margin-top: 28px;
}
.analysis-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.analysis-bar-bg {
  height: 6px;
  background: var(--surface2);
  border-radius: 99px;
  overflow: hidden;
}
.analysis-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-lt));
  border-radius: 99px;
  width: 0%;
  transition: width .6s ease;
}

/* =============================================
   RESULTADO
============================================= */
#page-result { animation: fadeUp .5s ease both; }

.result-hero {
  padding: 60px 0 32px;
  text-align: center;
}
.result-rarity {
  display: inline-block;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.35);
  color: var(--accent);
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.result-area-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.result-area-name span { color: var(--purple-lt); }
.result-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
}

/* =============================================
   RANKING DE COMPATIBILIDADE (NOVA — melhoria 2)
============================================= */
.ranking-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}
.ranking-title {
  font-family: 'Syne', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ranking-title span { color: var(--purple-lt); }

.score-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 0;
}
.score-position {
  font-family: 'Syne', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  width: 20px;
  flex-shrink: 0;
  text-align: center;
}
.score-position.first { color: var(--accent); }
.score-label {
  width: 110px;
  font-size: .85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.score-label.top { color: var(--white); font-weight: 600; }
.score-bar-wrap {
  flex: 1;
  height: 8px;
  background: var(--surface2);
  border-radius: 99px;
  overflow: hidden;
}
.score-bar {
  height: 100%;
  border-radius: 99px;
  background: var(--border);
  transition: width .8s cubic-bezier(.4,0,.2,1);
}
.score-bar.top {
  background: linear-gradient(90deg, var(--purple), var(--purple-lt));
}
.score-val {
  width: 36px;
  text-align: right;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}
.score-val.top { color: var(--purple-lt); }

/* =============================================
   SEÇÃO BLOQUEADA MELHORADA (melhoria 3)
============================================= */
.locked-section {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  margin: 8px 0 32px;
  overflow: hidden;
}
.locked-content-preview {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}
.roadmap-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.roadmap-item:last-child { border-bottom: none; }
.roadmap-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple);
  margin-top: 6px;
  flex-shrink: 0;
}
.roadmap-item h4 { font-size: .95rem; color: var(--white); margin-bottom: 4px; }
.roadmap-item p { font-size: .825rem; color: var(--text-muted); }

.locked-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  background: linear-gradient(to bottom, transparent 0%, rgba(10,10,18,.97) 45%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 24px;
  gap: 10px;
  z-index: 5;
}
.locked-icon { font-size: 2rem; }
.locked-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}
.locked-sub {
  font-size: .875rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 400px;
}

/* =============================================
   SEÇÃO DE BENEFÍCIOS DO PLANO (NOVA — melhoria 3)
============================================= */
.plan-benefits {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 24px;
}
.plan-benefits-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
}
.plan-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .9rem;
  color: var(--text);
  border-bottom: 1px solid rgba(124,58,237,.1);
}
.plan-benefit-item:last-child { border-bottom: none; }
.plan-check {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   SOCIAL PROOF / URGÊNCIA (melhoria 5)
============================================= */
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(16,185,129,.07);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 16px;
}
.social-proof-icon { font-size: 1.4rem; flex-shrink: 0; }
.social-proof-text { font-size: .875rem; color: var(--text-muted); }
.social-proof-text strong { color: var(--green); }

.urgency-box {
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.urgency-icon { font-size: 1.4rem; flex-shrink: 0; }
.urgency-text h4 { font-size: .9rem; color: var(--accent); margin-bottom: 2px; font-weight: 700; }
.urgency-text p { font-size: .825rem; color: var(--text-muted); }

/* =============================================
   PREÇO E CTA
============================================= */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  justify-content: center;
  margin: 20px 0 12px;
}
.price-old { color: var(--text-muted); text-decoration: line-through; font-size: 1rem; }
.price-new {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}
.price-period { font-size: .85rem; color: var(--text-muted); }
.guarantee {
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  opacity: .8;
}

/* =============================================
   PÁGINAS LEGAIS
============================================= */
.legal-page { padding: 60px 0; }
.legal-page h1 { font-size: 2rem; color: var(--white); margin-bottom: 32px; }
.legal-page h2 { font-size: 1.2rem; color: var(--purple-lt); margin: 28px 0 12px; }
.legal-page p, .legal-page ul { font-size: .95rem; color: var(--text-muted); margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; }
.legal-page li { margin-bottom: 6px; }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 20px 24px;
  text-align: center;
  margin-top: 80px;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a { font-size: .85rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-disclaimer {
  font-size: .75rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 8px;
  opacity: .7;
}
.footer-copy { font-size: .75rem; color: var(--text-muted); opacity: .5; }

/* =============================================
   ANIMAÇÕES
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
.pulse { animation: pulse 2.5s ease-in-out infinite; }

/* =============================================
   RESPONSIVO — MOBILE FIRST
============================================= */
@media (max-width: 600px) {
  .quiz-card { padding: 24px 18px 20px; }
  .hero-stats { gap: 24px; }
  .navbar-links { display: none; }
  .locked-overlay { padding: 20px 16px; }
  .analysis-wrap { padding: 40px 16px; }
  .analysis-steps { min-width: unset; }
  .plan-benefits { padding: 20px 16px; }
  .btn-unlock { font-size: 1rem; padding: 18px 24px; }
  .score-label { width: 80px; font-size: .78rem; }
  .price-new { font-size: 1.8rem; }
}

/* =============================================
   SEÇÃO DE VENDAS — adicione ao final do style.css
============================================= */

/* ── Transição / Bridge ─────────────────────── */
.sales-bridge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 40px;
}
.sales-bridge-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.sales-bridge-text {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-lt);
  white-space: nowrap;
}

/* ── Hero de vendas ─────────────────────────── */
.sales-hero {
  text-align: center;
  margin-bottom: 40px;
}
.sales-tag {
  display: inline-block;
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.3);
  color: var(--purple-lt);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.sales-headline {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 16px;
}
.sales-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple-lt), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sales-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Roadmap preview ────────────────────────── */
.roadmap-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}
.roadmap-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(124,58,237,.08);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
}
.roadmap-preview-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--purple-lt);
}
.roadmap-locked-badge {
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.25);
  padding: 3px 10px;
  border-radius: 999px;
}
.roadmap-steps-blur {
  padding: 8px 0;
}
.roadmap-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .2s;
}
.roadmap-step-item:last-child { border-bottom: none; }
.roadmap-step-item:hover { background: rgba(255,255,255,.02); }
.roadmap-step-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(124,58,237,.2);
  border: 1px solid rgba(124,58,237,.3);
  color: var(--purple-lt);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.roadmap-step-content strong {
  display: block;
  font-size: .9rem;
  color: #fff;
  margin-bottom: 4px;
}
.roadmap-step-content p {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
}
.roadmap-blurred {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
  opacity: .5;
}

/* ── O que está incluído ────────────────────── */
.included-section {
  margin-bottom: 40px;
}
.included-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.included-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  transition: border-color .2s, transform .2s;
}
.included-card:hover {
  border-color: rgba(124,58,237,.4);
  transform: translateY(-2px);
}
.included-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.included-text strong {
  display: block;
  font-size: .9rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}
.included-text span {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Para quem é ────────────────────────────── */
.for-who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 560px) {
  .for-who { grid-template-columns: 1fr; }
}
.for-who-col {
  background: var(--surface);
  border-radius: 12px;
  padding: 20px;
}
.for-who-yes { border: 1px solid rgba(16,185,129,.25); }
.for-who-no  { border: 1px solid rgba(239,68,68,.15); }
.for-who-col h4 {
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.for-who-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.for-who-col ul li {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 4px;
}

/* ── Prova social ───────────────────────────── */
.social-proof-new {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 32px;
}
.social-proof-avatars {
  display: flex;
  font-size: 1.4rem;
  letter-spacing: -4px;
  flex-shrink: 0;
}
.social-proof-copy {
  font-size: .85rem;
  line-height: 1.4;
}
.social-proof-copy strong {
  color: #10b981;
  display: block;
  font-size: .95rem;
}
.social-proof-copy span {
  color: var(--text-muted);
}

/* ── Bloco de preço ─────────────────────────── */
.price-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
.urgency-banner {
  background: rgba(245,158,11,.12);
  border-bottom: 1px solid rgba(245,158,11,.2);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  letter-spacing: .03em;
}
.price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 24px 20px;
  flex-wrap: wrap;
}
.price-from, .price-to {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.price-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.price-old-new {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: .6;
}
.price-main {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}
.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-lt);
  margin-top: 6px;
}
.price-value {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.price-period {
  font-size: .75rem;
  color: var(--text-muted);
}
.price-note {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  padding: 0 20px 20px;
  margin: 0;
}
.price-note strong { color: var(--purple-lt); }

/* ── CTA principal ──────────────────────────── */
.btn-sales-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--purple) 0%, #6d28d9 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s;
  box-shadow: 0 8px 32px rgba(124,58,237,.4);
  margin-bottom: 20px;
  letter-spacing: .01em;
}
.btn-sales-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(124,58,237,.55);
  filter: brightness(1.08);
}
.btn-sales-cta:active { transform: translateY(-1px); }
.btn-sales-sub {
  font-size: .75rem;
  font-weight: 500;
  opacity: .85;
  letter-spacing: .02em;
}
.btn-sales-final {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 8px 32px rgba(16,185,129,.35);
  margin-top: 8px;
}
.btn-sales-final:hover {
  box-shadow: 0 16px 48px rgba(16,185,129,.5);
}

/* ── Garantia ───────────────────────────────── */
.guarantee-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(16,185,129,.05);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.guarantee-icon { font-size: 2rem; flex-shrink: 0; }
.guarantee-text strong {
  display: block;
  color: #10b981;
  font-size: .95rem;
  margin-bottom: 6px;
}
.guarantee-text p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── Selos de pagamento ─────────────────────── */
.payment-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
}
.payment-trust span {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── FAQ ────────────────────────────────────── */
.faq-section { margin-bottom: 40px; }
.faq-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(124,58,237,.35); }
.faq-item summary {
  padding: 16px 20px;
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--purple-lt);
  font-weight: 300;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 20px 16px;
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}