:root {
  --orange: #f97316;
  --orange-dark: #ea6800;
  --orange-light: #fed7aa;
  --dark: #0f172a;
  --dark2: #1e293b;
  --dark3: #334155;
  --gray: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --green: #22c55e;
  --red: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.2);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo { font-size: 1.25rem; font-weight: 800; color: var(--white); }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0a00 100%);
  color: var(--white);
  padding-bottom: 4rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  text-align: center;
}

.badge {
  display: inline-block;
  background: rgba(234,255,0,.12);
  color: #eaff00;
  border: 1px solid rgba(234,255,0,.6);
  text-shadow: 0 0 12px rgba(234,255,0,.6);
  padding: .35rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}

.hero h1 em { color: var(--orange); font-style: normal; }

.hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: nowrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stats .stat {
  text-align: center;
  flex: 1;
  padding: 0 1rem;
}
.hero-stats .stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--orange); white-space: nowrap; }
.hero-stats .stat span { font-size: .72rem; color: #94a3b8; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }

.hero-julio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  margin-top: 1.75rem;
}
.hero-julio span {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}
.hero-julio em { color: var(--orange); font-style: normal; }

/* ── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: var(--white); }

.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark3); }
.btn-outline:hover { border-color: var(--dark); }

.btn-pro { background: var(--dark); color: var(--orange); border-color: var(--dark); }
.btn-pro:hover { background: var(--dark2); }

.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── SECTIONS ──────────────────────────────────────────────────────────────── */
.section { padding: 4rem 1.5rem; }
.section-dark { background: #0a0f1a; color: var(--white); }
.section-pro  { background: var(--dark2); color: var(--white); }
.section-vs   { background: #060910; color: var(--white); }

/* ── VS CHATGPT ──────────────────────────────────────────────────────────────── */
.vs-grid {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.vs-card {
  flex: 1;
  border-radius: var(--radius);
  padding: 1.75rem;
}
.vs-card-bad {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  opacity: .7;
}
.vs-card-good {
  background: linear-gradient(135deg, rgba(234,255,0,.06) 0%, rgba(234,255,0,.02) 100%);
  border: 1px solid rgba(234,255,0,.3);
}
.vs-logo {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
  margin-bottom: 1rem;
}
.vs-logo-good { color: #eaff00; }
.vs-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.vs-list li { font-size: .88rem; color: #94a3b8; line-height: 1.4; }
.vs-card-good .vs-list li { color: #e2e8f0; }
.vs-divider {
  font-size: 1.1rem;
  font-weight: 800;
  color: #334155;
  flex-shrink: 0;
}

/* ── WAITLIST SUPER ──────────────────────────────────────────────────────────── */
/* ── SUPER LAUNCH ────────────────────────────────────────────────────────────── */
.super-launch { margin-top: 3rem; }

.super-launch-header { text-align: center; margin-bottom: 2.5rem; }
.super-launch-pre {
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #475569;
  margin-bottom: .5rem;
}
.super-launch-h {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.super-launch-h span { color: #eaff00; }
.super-launch-sub { font-size: 1rem; color: #64748b; margin: 0; }

.super-launch-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1.5rem;
  align-items: start;
}
.super-launch-card {
  border-radius: var(--radius);
  padding: 2rem;
}
.super-launch-no {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  opacity: .65;
}
.super-launch-no h3 { font-size: 1rem; font-weight: 700; color: #94a3b8; margin-bottom: .75rem; }
.super-launch-no p  { font-size: .85rem; color: #64748b; line-height: 1.6; margin-bottom: .75rem; }
.super-launch-result {
  font-size: .8rem;
  font-weight: 600;
  color: #475569;
  padding: .4rem .75rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  display: inline-block;
}

.super-launch-yes {
  background: linear-gradient(135deg, #0f1020 0%, #1a1a2e 100%);
  border: 1px solid rgba(234,255,0,.35);
  box-shadow: 0 0 40px rgba(234,255,0,.06);
}
.super-launch-option {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #475569;
  margin-bottom: .75rem;
}
.super-launch-option-yes { color: #eaff00; }
.super-launch-yes h3 { font-size: 1.1rem; font-weight: 700; color: #f1f5f9; margin-bottom: .75rem; line-height: 1.4; }
.super-launch-yes p  { font-size: .88rem; color: #94a3b8; line-height: 1.65; margin-bottom: .75rem; }
.super-launch-diff { font-size: .88rem !important; color: #cbd5e1 !important; }
.super-launch-diff strong { color: #f1f5f9; }

.super-launch-price-wrap {
  margin: 1.25rem 0;
  padding: 1rem;
  background: rgba(234,255,0,.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(234,255,0,.15);
}
.super-launch-price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .35rem; }
.super-price-num { font-size: 2rem; font-weight: 800; color: #eaff00; }
.super-price-desc { font-size: .8rem; color: #64748b; }
.super-price-urgency {
  font-size: .78rem;
  font-weight: 600;
  color: #f97316;
}

.super-launch-btn { margin-bottom: .75rem; }
.super-launch-note {
  font-size: .75rem;
  color: #475569;
  text-align: center;
  margin: 0;
}
.super-launch-note a { color: #94a3b8; }

@media (max-width: 768px) {
  .vs-grid { flex-direction: column; }
  .vs-divider { transform: rotate(90deg); }
  .super-launch-grid { grid-template-columns: 1fr; }
  .super-launch-no { display: none; }
}

.container { max-width: 1000px; margin: 0 auto; }
.container-narrow { max-width: 520px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2rem; font-weight: 800; margin-bottom: .75rem; }
.section-header p { color: #94a3b8; max-width: 560px; margin: 0 auto; }

/* ── QUIZ ──────────────────────────────────────────────────────────────────── */
.quiz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.quiz-header h2 { font-size: 1.75rem; font-weight: 800; }
.quiz-controls { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }

.select {
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid #e2e8f0;
  font-size: .9rem;
  font-family: inherit;
  background: var(--white);
  cursor: pointer;
  min-width: 200px;
}
.select:focus { outline: none; border-color: var(--orange); }

.stats-bar {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.stat-pill {
  padding: .35rem .9rem;
  background: #f1f5f9;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray);
}
.stat-pill.accent { background: #fff7ed; color: var(--orange); }

.progress-wrap {
  height: 6px;
  background: #e2e8f0;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--orange);
  border-radius: 100px;
  transition: width .4s ease;
  width: 0%;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray);
}
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ── CARDS ─────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
}

.question-card { margin-bottom: 1rem; }

.q-meta {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray);
  margin-bottom: 1rem;
}

.q-text {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.options { display: flex; flex-direction: column; gap: .75rem; }

.option {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  font-size: .95rem;
  font-family: inherit;
  text-align: left;
  transition: all .12s ease;
  line-height: 1.4;
}
.option:hover:not(:disabled) { border-color: var(--orange); background: #fff7ed; }
.option .letra {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  font-weight: 700;
  font-size: .85rem;
  color: var(--gray);
}
.option.correcta { border-color: var(--green); background: #f0fdf4; }
.option.correcta .letra { background: var(--green); color: var(--white); }
.option.incorrecta { border-color: var(--red); background: #fef2f2; }
.option.incorrecta .letra { background: var(--red); color: var(--white); }
.option:disabled { cursor: default; }

/* ── RESULT ────────────────────────────────────────────────────────────────── */
.result-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
  margin-top: 1rem;
  animation: slideUp .2s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.result-icon { font-size: 2rem; margin-bottom: .5rem; }
.result-text { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.result-text.ok  { color: var(--green); }
.result-text.ko  { color: var(--red); }

.explicacion {
  color: var(--gray);
  font-size: .9rem;
  margin-bottom: 1.25rem;
  padding: .75rem;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  border-left: 3px solid #e2e8f0;
}

.pro-gate { border-top: 1px solid #f1f5f9; padding-top: 1.25rem; }

/* Tarjeta Pro inline en el resultado */
.pro-inline-card {
  background: linear-gradient(135deg, var(--dark) 0%, #1c0a00 100%);
  border: 1px solid rgba(249,115,22,.35);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--white);
  margin-bottom: .75rem;
}
.pro-inline-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .5rem;
}
.pro-inline-badge {
  background: var(--orange);
  color: var(--white);
  padding: .1rem .55rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pro-inline-title { font-weight: 700; font-size: .95rem; }
.pro-inline-desc { color: #94a3b8; font-size: .85rem; margin-bottom: 1rem; }
.pro-inline-desc em { color: var(--orange-light); font-style: normal; }
.pro-inline-features {
  list-style: none;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.pro-inline-features li { font-size: .85rem; color: #cbd5e1; }

.btn-pro-cta {
  width: 100%;
  margin-bottom: .6rem;
  font-size: 1rem;
  padding: .8rem;
}

.pro-inline-comprar {
  display: block;
  text-align: center;
  color: var(--orange);
  font-size: .82rem;
  text-decoration: none;
  margin-top: .1rem;
}
.pro-inline-comprar:hover { text-decoration: underline; }

/* "Continuar sin justificación" — link discreto */
.gate-free-action {
  text-align: center;
  margin-top: .5rem;
}
.btn-link {
  background: none;
  border: none;
  color: var(--gray);
  font-size: .82rem;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  padding: .25rem;
}
.btn-link:hover { color: var(--dark); }

.input-code {
  flex: 1;
  padding: .65rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  min-width: 180px;
}
.input-code:focus { outline: none; border-color: var(--orange); }

.pro-input { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; margin-top: .75rem; }

.justificacion-box {
  margin-top: 1rem;
  padding: 1rem;
  background: #fff7ed;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--orange);
}
.justificacion-box h4 { font-size: .85rem; font-weight: 700; color: var(--orange); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .05em; }
#justificacion-text { font-size: .9rem; line-height: 1.7; color: var(--dark); white-space: pre-wrap; }

/* ── SUPER INTELIGENCIA FUNNEL ───────────────────────────────────────────────── */
.super-funnel {
  margin-top: 1rem;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  border: 1px solid rgba(234,255,0,.25);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.super-trigger {
  font-size: .9rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
}
.super-trigger strong { color: #eaff00; }

.super-preview-wrap {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.super-preview-bubble {
  font-size: .82rem;
  padding: .5rem .75rem;
  border-radius: 8px;
  line-height: 1.5;
}
.super-preview-bubble.q {
  background: rgba(255,255,255,.07);
  color: #94a3b8;
  align-self: flex-start;
}
.super-preview-bubble.a {
  background: rgba(234,255,0,.08);
  color: #cbd5e1;
  border-left: 2px solid rgba(234,255,0,.4);
  transition: filter .3s;
}
.super-preview-bubble.a.blurred { filter: blur(4px); user-select: none; }
.super-preview-badge {
  font-size: .7rem;
  color: #64748b;
  text-align: center;
}

.super-gate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}
.super-gate .input-code { flex: 1; min-width: 160px; }
.super-comprar-link {
  font-size: .8rem;
  font-weight: 600;
  color: #eaff00;
  text-decoration: none;
  width: 100%;
  text-align: center;
  opacity: .8;
}
.super-comprar-link:hover { opacity: 1; text-decoration: underline; }

.super-chat-wrap { display: flex; flex-direction: column; gap: .5rem; }
.super-chat-msgs {
  max-height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding-right: .25rem;
}
.super-msg {
  font-size: .83rem;
  line-height: 1.55;
  padding: .5rem .75rem;
  border-radius: 8px;
  max-width: 90%;
  white-space: pre-wrap;
}
.super-msg-user {
  background: rgba(255,255,255,.08);
  color: #94a3b8;
  align-self: flex-end;
  text-align: right;
}
.super-msg-agent {
  background: rgba(234,255,0,.07);
  color: #e2e8f0;
  border-left: 2px solid rgba(234,255,0,.4);
  align-self: flex-start;
}
.super-chat-row { display: flex; gap: .5rem; }
.super-chat-row .btn { padding: .55rem .9rem; flex-shrink: 0; }

/* ── FIN SESIÓN ────────────────────────────────────────────────────────────── */
.fin-sesion {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.fin-icon { font-size: 3rem; margin-bottom: 1rem; }
.fin-sesion h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem; }
.fin-sesion p { color: var(--gray); margin-bottom: 1.5rem; }


/* ── INTELIGENCIA ──────────────────────────────────────────────────────────── */
.intel-wrap { position: relative; }

.intel-content { transition: filter .4s ease; }
.intel-content.locked { filter: blur(5px); pointer-events: none; user-select: none; }

.intel-gate {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,15,26,.75);
  border-radius: var(--radius);
  backdrop-filter: blur(2px);
}

.intel-gate-box {
  background: linear-gradient(135deg, #0f172a 0%, #1c0a00 100%);
  border: 1px solid rgba(249,115,22,.4);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  color: var(--white);
}
.intel-gate-box .pro-inline-badge { display: inline-block; margin-bottom: .75rem; }
.intel-gate-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; }
.intel-gate-list {
  list-style: none;
  text-align: left;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.intel-gate-list li { font-size: .88rem; color: #cbd5e1; }

.intel-card {
  background: #1e2d40;
  border: none;
  border-top: 3px solid var(--orange);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  border-radius: var(--radius);
}
.intel-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; }
.intel-sub { font-size: .8rem; color: #94a3b8; margin-bottom: .75rem; }
.card-alert { border-top-color: rgba(249,115,22,.7); }

.ranking-list { display: flex; flex-direction: column; gap: .4rem; }
.ranking-item { display: flex; align-items: center; gap: .75rem; font-size: .85rem; }
.ranking-num { color: var(--orange); font-weight: 700; min-width: 1.25rem; }
.ranking-bar-wrap { flex: 1; height: 6px; background: var(--dark3); border-radius: 100px; overflow: hidden; }
.ranking-bar { height: 100%; background: var(--orange); border-radius: 100px; }
.ranking-pct { color: #94a3b8; min-width: 3rem; text-align: right; }

.virgen-item, .norma-item, .forma-item, .tendencia-item {
  padding: .4rem 0;
  border-bottom: 1px solid var(--dark3);
  font-size: .85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.virgen-item:last-child, .norma-item:last-child, .forma-item:last-child, .tendencia-item:last-child { border-bottom: none; }

.tag { padding: .15rem .5rem; border-radius: 4px; font-size: .75rem; font-weight: 600; }
.tag-orange { background: rgba(249,115,22,.2); color: var(--orange); }
.tag-green { background: rgba(34,197,94,.2); color: var(--green); }
.tag-red { background: rgba(239,68,68,.2); color: var(--red); }

.intel-skeleton, .intel-shimmer { display: flex; flex-direction: column; gap: .5rem; }
.sk-row {
  height: .9rem;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,.06) 25%, rgba(255,255,255,.14) 50%, rgba(255,255,255,.06) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.sk-w60 { width: 60%; }
.sk-w65 { width: 65%; }
.sk-w70 { width: 70%; }
.sk-w75 { width: 75%; }
.sk-w80 { width: 80%; }
.sk-w85 { width: 85%; }
.sk-w90 { width: 90%; }

/* ── PRO SECTION ───────────────────────────────────────────────────────────── */
.pro-card {
  background: var(--dark);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.pro-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: .25rem .85rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.pro-card h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: .75rem; }
.pro-desc { color: #94a3b8; margin-bottom: 1.5rem; }
.pro-desc em { color: var(--orange); font-style: normal; }
.pro-features { list-style: none; text-align: left; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .5rem; }
.pro-features li { font-size: .95rem; color: #cbd5e1; }
.pro-price { margin-bottom: 1.5rem; }
.price { font-size: 3rem; font-weight: 800; color: var(--orange); }
.price-period { color: #94a3b8; font-size: .9rem; display: block; margin-top: .15rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.price-includes { color: #64748b; font-size: .82rem; margin-top: .5rem; }
.pro-cancel { color: #94a3b8; font-size: .85rem; margin-top: .75rem; font-style: italic; }

.free-teaser {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark3);
}
.free-teaser p { color: #94a3b8; font-size: 1.05rem; }
.free-teaser a { color: var(--orange); text-decoration: none; }
.free-teaser a:hover { text-decoration: underline; }
.free-teaser-sub { font-size: .9rem !important; color: #64748b !important; margin-top: .35rem; }

.quiz-sub { font-size: .85rem; color: var(--gray); margin-top: .25rem; }
.quiz-sub a { color: var(--orange); text-decoration: none; }
.quiz-sub a:hover { text-decoration: underline; }

/* ── ZONA PRO ───────────────────────────────────────────────────────────────── */
.section-zona-pro {
  background: linear-gradient(135deg, #0f172a 0%, #1c0a00 100%);
  color: var(--white);
  border-top: 1px solid rgba(249,115,22,.2);
  border-bottom: 1px solid rgba(249,115,22,.2);
}

.zona-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.zona-id { display: flex; align-items: center; gap: .75rem; }
.zona-codigo { font-size: .9rem; color: #94a3b8; font-family: monospace; letter-spacing: .08em; }

.zona-quota-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; }
.zona-quota-label { font-size: .82rem; color: #94a3b8; }
.zona-quota-bar-wrap { width: 180px; height: 6px; background: rgba(255,255,255,.1); border-radius: 100px; overflow: hidden; }
.zona-quota-bar { height: 100%; border-radius: 100px; transition: width .5s ease, background .5s ease; }

.zona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.zona-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.zona-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); }

.select-dark {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.15);
}
.select-dark option { background: #0f172a; color: var(--white); }

@media (max-width: 640px) {
  .zona-grid { grid-template-columns: 1fr; }
  .zona-quota-bar-wrap { width: 120px; }
}

/* ── GENERADOR PRO ──────────────────────────────────────────────────────────── */
.gen-panel {
  background: linear-gradient(135deg, var(--dark) 0%, #1c0a00 100%);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.gen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.gen-title { display: flex; align-items: center; gap: .6rem; }
.gen-quota {
  font-size: .82rem;
  color: #94a3b8;
  background: rgba(255,255,255,.06);
  padding: .3rem .75rem;
  border-radius: 100px;
  white-space: nowrap;
}
.gen-quota.ok   { color: var(--green); }
.gen-quota.warn { color: var(--orange); }
.gen-quota.agotado { color: var(--red); }
.gen-controls {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.gen-controls .select {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.15);
}
.gen-controls .select option { background: var(--dark); color: var(--white); }
.select-sm { max-width: 140px; }
.gen-recarga-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: .75rem;
  font-size: .85rem;
  color: #94a3b8;
}
.gen-historial {
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: .75rem;
}
.gen-historial-title { font-size: .75rem; color: #64748b; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.historial-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .82rem;
  color: #94a3b8;
}
.historial-item:last-child { border-bottom: none; }

.gen-recarga-form {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: #64748b;
  padding: 2rem 1.5rem;
  text-align: center;
}
.footer .logo { display: block; margin-bottom: .5rem; color: var(--white); }
.footer p { font-size: .85rem; margin-bottom: .25rem; }

/* ── EXTRAS ────────────────────────────────────────────────────────────────── */
.stat-pill.good { background: rgba(34,197,94,.15); color: var(--green); }
.stat-pill.bad  { background: rgba(239,68,68,.15);  color: var(--red); }

.input-code.error { border-color: var(--red); animation: shake .3s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .quiz-header { flex-direction: column; align-items: flex-start; }
  .quiz-controls { width: 100%; }
  .select { width: 100%; }
  .pro-gate-free { flex-direction: column; }
  .pro-input { flex-direction: column; align-items: stretch; }
  .intel-row { flex-direction: column; }
  .intel-row-2 .intel-card { flex: 1; }
}
