:root{
  --bg: #000000;
  --card: #15171f;
  --card-2: #1c2029;
  --border: #2a2e3a;
  --text: #ffffff;
  --muted: #9aa0ab;
  --yellow: #eab308;
  --gold: #d4a017;
  --red: #ef4444;
  --blue: #3b82f6;
  --green: #22c55e;
  --green-dark: #16a34a;
  --light: #e7e9ee;
  --light-text: #111318;
  --radius: 14px;
  --font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

*{ box-sizing: border-box; }

body{
  margin:0;
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.app{
  max-width: 620px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
}

/* ===== PROGRESSO ===== */
.progress-wrap{
  position: sticky;
  top: 0;
  padding: 14px 20px 10px;
  background: var(--bg);
  z-index: 10;
}
.progress-bar{
  height: 6px;
  border-radius: 999px;
  background: #26262f;
  overflow: hidden;
}
.progress-fill{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--gold));
  transition: width .4s ease;
}

.screen{ display:none; animation: fadeIn .35s ease; }
.screen.active{ display:block; }
@keyframes fadeIn{
  from{ opacity:0; transform: translateY(8px); }
  to{ opacity:1; transform: translateY(0); }
}

.container{ padding: 28px 20px 60px; }

/* ===== LOGO / ENTRADA ===== */
.logo{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom: 18px;
}
.logo-icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  font-weight: 800;
  font-size: 18px;
  color: #241a00;
}
.logo-text{
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-img{
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.headline{
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin: 0 0 16px;
}
.headline .hl{ color: var(--yellow); }

.sub{
  text-align:center;
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 22px;
}

.sintomas-lista{
  list-style:none;
  margin: 0 0 22px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.sintomas-lista li{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14.5px;
}

/* ===== BOTOES ===== */
.btn-primary{
  display:block;
  width:100%;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #241a00;
  text-align:center;
  text-decoration:none;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  border:none;
  border-radius: 12px;
  cursor:pointer;
  box-shadow: 0 8px 20px rgba(234,179,8,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover{ transform: translateY(-1px); }
.btn-green{
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #05170c;
  box-shadow: 0 8px 20px rgba(34,197,94,.25);
}
.btn-red{
  background: var(--red);
  color: #2a0505;
  box-shadow: 0 8px 20px rgba(239,68,68,.25);
}
.hidden{ display:none !important; }
.text-center{ text-align:center; }

/* ===== PERGUNTA ===== */
.pergunta{
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  text-align:center;
  margin: 0 0 22px;
}
.pergunta .hl{ color: var(--yellow); }
.hint{
  text-align:center;
  color: var(--muted);
  font-size: 13px;
  margin: -12px 0 18px;
}

/* ===== OPCOES CLARAS (estilo tela 1-3) ===== */
.opcoes{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-bottom: 22px;
}
.opcao-clara{
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-align:left;
  padding: 15px 18px;
  border-radius: 12px;
  border: none;
  background: var(--light);
  color: var(--light-text);
  font-size: 15px;
  font-family: var(--font-display);
  cursor:pointer;
  transition: transform .12s ease, background .15s ease;
}
.opcao-clara:hover{ background:#d8dbe2; }
.opcao-clara.selected{ background: var(--yellow); }
.opcao-clara .chev{ color:#9aa0ab; font-size: 16px; }

/* ===== VSL (9:16) ===== */
.vsl-wrap{
  max-width: 340px;
  margin: 0 auto 26px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}

/* ===== OPCOES ESCURAS (estilo emojis / checkbox / radio) ===== */
.opcao-escura{
  display:flex;
  align-items:center;
  gap: 12px;
  text-align:left;
  width:100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card-2);
  color: var(--text);
  font-size: 14.5px;
  font-family: var(--font-display);
  cursor:pointer;
  transition: border-color .15s ease, background .15s ease;
}
.opcao-escura:hover{ border-color: var(--yellow); }
.opcao-escura.selected{ border-color: var(--yellow); background:#242417; }
.opcao-escura .emoji{ font-size: 18px; flex:none; }
.opcao-escura .txt{ flex:1; }
.opcao-escura .indicador{
  flex:none;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--muted);
}
.opcao-escura.radio .indicador{ border-radius: 50%; }
.opcao-escura.selected .indicador{
  background: var(--yellow);
  border-color: var(--yellow);
}
.opcao-escura .chev{ color: var(--muted); font-size: 15px; }

/* ===== SLIDER 1-4 ===== */
.slider-box{ margin-bottom: 22px; }
.slider-nums{
  display:flex;
  gap: 10px;
  margin-bottom: 12px;
}
.slider-num{
  flex:1;
  padding: 16px 0;
  text-align:center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card-2);
  color: var(--text);
  font-weight: 700;
  font-size: 17px;
  cursor:pointer;
  transition: border-color .15s ease, background .15s ease;
}
.slider-num.selected{
  border-color: var(--yellow);
  background: #2a2410;
  color: var(--yellow);
}
.slider-track{
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4444, #eab308, #22c55e);
  margin-bottom: 8px;
}
.slider-labels{
  display:flex;
  justify-content:space-between;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 18px;
}
.slider-desc{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}

/* ===== MECANISMO (explicação) ===== */
.mecanismo-img{
  display:block;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.mecanismo-box p{
  font-size: 15px;
  margin: 0 0 14px;
  text-align:center;
}
.mecanismo-box strong{ color: var(--yellow); }

/* ===== URGENCIA ===== */
.urgencia-titulo{
  color: var(--red);
  font-size: 22px;
  font-weight: 800;
  text-align:center;
  line-height:1.3;
  margin: 0 0 18px;
}
.urgencia-titulo .white{ color: var(--text); }
.urgencia-img{
  width:100%;
  max-height: 280px;
  object-fit:cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.urgencia-texto{
  text-align:center;
  font-size: 15px;
  margin-bottom: 22px;
}
.urgencia-texto .red{ color: var(--red); font-weight:700; }

/* ===== LOADING ===== */
.loading-container{ padding-top: 60px; text-align:center; }
.loading-bar-wrap{
  height: 8px;
  border-radius: 999px;
  background: #26262f;
  overflow:hidden;
  margin: 22px 0 12px;
}
.loading-bar-fill{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--yellow), var(--gold));
  transition: width .3s linear;
}
.loading-status{ color: var(--muted); font-size: 14px; }
.loading-linha{ text-align:left; margin-bottom: 20px; }
.loading-linha-topo{
  display:flex;
  justify-content:space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

/* ===== ESPECIALISTA ===== */
.especialista-card{
  text-align:center;
}
.especialista-avatar{
  display:block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 18px;
  object-fit: cover;
  border: 3px solid var(--yellow);
  box-shadow: 0 4px 14px rgba(234,179,8,.3);
}
.especialista-nome{ color: var(--yellow); font-size: 14px; margin: 0 0 18px; }
.especialista-texto{
  text-align:left;
  font-size: 14.5px;
  color: #d8dbe2;
  margin-bottom: 14px;
}
.especialista-texto strong{ color: var(--yellow); }

/* ===== PROVA SOCIAL 93% ===== */
.stat-numero{
  text-align:center;
  font-size: 48px;
  font-weight: 800;
  color: var(--yellow);
  margin: 0 0 4px;
}
.stat-desc{
  text-align:center;
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 24px;
}
.depoimento-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 14px;
}
.depoimento-nome{
  display:flex;
  align-items:center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.depoimento-nome .loc{ color: var(--muted); font-weight: 400; font-size: 12.5px; }
.depoimento-texto{
  font-size: 14px;
  color: #d8dbe2;
  margin: 0;
  white-space: pre-line;
}

/* ===== GRÁFICO DO PLANO ===== */
.plano-titulo{
  font-size: 22px;
  font-weight: 800;
  text-align:center;
  line-height: 1.35;
  margin: 0 0 20px;
}
.plano-titulo .hl{ color: var(--yellow); }
.grafico-box{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px 10px;
  margin-bottom: 22px;
}
.grafico-svg{ width:100%; height:auto; display:block; }
.checklist{
  list-style:none;
  margin: 0 0 24px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.checklist li{
  display:flex;
  gap: 10px;
  font-size: 14.5px;
  align-items:flex-start;
}
.checklist li::before{
  content: "✓";
  flex:none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color:#05170c;
  font-size: 12px;
  font-weight: 800;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top: 1px;
}

/* ===== SALES PAGE ===== */
.sticky-cta{
  position: sticky;
  top: 0;
  z-index: 20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 20px;
  background: #111319;
  border-bottom: 1px solid var(--border);
}
.timer-label{ font-size: 12px; color: var(--muted); }
.timer-clock{ font-size: 18px; font-weight: 800; color: var(--text); }
.sticky-cta .btn-primary{ width:auto; padding: 10px 18px; font-size: 13px; }

.oferta-toggle{
  display:flex;
  gap: 10px;
  margin: 20px 0;
}
.oferta-toggle button{
  flex:1;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card-2);
  color: var(--muted);
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
}
.oferta-toggle button.active{
  background: var(--green);
  color: #05170c;
  border-color: var(--green);
}

.comparacao{
  display:flex;
  gap: 10px;
  margin-bottom: 20px;
}
.comparacao img{
  width: 50%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
}
.comparacao .antes{ filter: grayscale(1); }

.barra-metric{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  flex:1;
}
.barra-metric-label{ display:flex; justify-content:space-between; font-size:13px; margin-bottom:8px; }
.barra-metric-fill-wrap{ height:6px; border-radius:999px; background:#26262f; overflow:hidden; }
.barra-metric-fill{ height:100%; border-radius:999px; }
.metrics-row{ display:flex; gap:10px; margin-bottom: 20px; }
.metric-estado{ font-size: 13px; color: var(--muted); margin-top: 8px; }
.metric-badge{
  display:inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 8px;
}

.probabilidade-box{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
}
.probabilidade-topo{ display:flex; justify-content:space-between; font-size:14px; margin-bottom:8px; }
.probabilidade-fill-wrap{ height:8px; border-radius:999px; background:#26262f; overflow:hidden; }
.probabilidade-fill{ height:100%; background: linear-gradient(90deg, var(--blue), #60a5fa); border-radius:999px; }

.urgente-box{
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.35);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 26px;
  font-size: 13.5px;
}

.produto-nome{
  text-align:center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 18px;
}
.produto-nome .hl{ color: var(--blue); }
.produto-caixa{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align:center;
  margin-bottom: 22px;
}
.produto-icone{
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), #b91c1c);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 34px;
}

/* ===== OFERTA ===== */
.oferta-box{
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 18px;
}
.oferta-tag{
  display:inline-block;
  background: var(--blue);
  color:#fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.oferta-lista{
  list-style:none;
  margin: 0 0 18px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.oferta-lista li{
  display:flex;
  gap: 8px;
  font-size: 14.5px;
}
.oferta-lista li::before{ content:"✅"; flex:none; }
.oferta-preco-de{
  text-align:center;
  color: var(--muted);
  text-decoration: line-through;
  font-size: 14px;
  margin: 0;
}
.oferta-preco-por{
  text-align:center;
  color: var(--green);
  font-size: 38px;
  font-weight: 800;
  margin: 4px 0 2px;
}
.oferta-preco-obs{
  text-align:center;
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 18px;
}
.selo-seguranca{
  text-align:center;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 10px;
}

.garantia-box{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align:center;
  margin: 26px 0;
}
.garantia-selo{
  width: 84px;
  height: 84px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 3px solid var(--green);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color: var(--green);
  font-weight: 800;
}
.garantia-selo .num{ font-size: 22px; line-height:1; }
.garantia-selo .dias{ font-size: 10px; }
.garantia-titulo{ font-size: 17px; font-weight: 700; margin: 0 0 10px; }
.garantia-texto{ font-size: 13.5px; color: var(--muted); margin:0; }

.stars{ color: var(--yellow); letter-spacing: 2px; }

/* ===== FAQ ===== */
.faq-item{
  border-bottom: 1px solid var(--border);
}
.faq-pergunta{
  width:100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-align:left;
  padding: 16px 4px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}
.faq-pergunta .plus{ color: var(--muted); font-size: 20px; transition: transform .2s ease; }
.faq-item.open .faq-pergunta .plus{ transform: rotate(45deg); }
.faq-resposta{
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  font-size: 14px;
  color: var(--muted);
}
.faq-item.open .faq-resposta{ max-height: 200px; padding-bottom: 16px; }

.secao-titulo{
  font-size: 20px;
  font-weight: 800;
  text-align:center;
  margin: 8px 0 20px;
}
.secao-titulo .hl{ color: var(--yellow); }

@media (min-width: 480px){
  .headline{ font-size: 30px; }
}
