:root{
  --bg:#070b14;
  --card:rgba(255,255,255,.04);
  --muted:#a8b6d4;
  --text:#eef4ff;
  --line:rgba(255,255,255,.10);
  --accent:#a78bfa;
  --accent2:#22d3ee;
  --danger:#fb7185;
  --ok:#34d399;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(900px 550px at 15% 15%, rgba(167,139,250,.22), transparent 55%),
    radial-gradient(900px 550px at 85% 25%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(900px 550px at 60% 95%, rgba(52,211,153,.12), transparent 60%),
    var(--bg);
  color:var(--text);
}

.wrap{ width:min(980px, 92vw); margin: 26px auto 44px; }

.hero{ padding: 10px 6px 16px; }
.hero-top{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.logo{
  width:46px; height:46px; border-radius:14px;
  display:grid; place-items:center; font-weight:900;
  background: linear-gradient(135deg, rgba(167,139,250,.28), rgba(34,211,238,.18));
  border:1px solid var(--line);
}
.kicker{ font-size:12px; color:rgba(255,255,255,.75); }
h1{
  margin: 4px 0 0;
  font-size: clamp(24px, 4.2vw, 38px);
  letter-spacing: -0.02em;
}

.badge{
  display:inline-block;
  font-size:12px;
  color: rgba(255,255,255,.85);
  border:1px solid var(--line);
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  white-space:nowrap;
}

.product{
  margin-top: 12px;
  padding: 14px;
  border:1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}
.product h2{ margin: 0 0 8px; font-size: 16px; }
.sub{ margin: 0; color: var(--muted); line-height: 1.6; font-size: 15px; }
.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.82);
}
.bullets li{ margin: 6px 0; }

.card{
  border:1px solid var(--line);
  background: var(--card);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
}

.progress{ height: 8px; background: rgba(255,255,255,.06); }
.progress-bar{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width .25s ease;
}

.form{ padding: 18px; }
.step{ display:none; }
.step.is-active{ display:block; }

h3{ margin: 8px 0 10px; font-size: 18px; }

.callout{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  border:1px solid rgba(167,139,250,.25);
  background: rgba(167,139,250,.10);
  color: rgba(255,255,255,.9);
}

.options{
  border:0; padding:0; margin: 10px 0 0;
  display:grid; gap:10px;
}

.radio{
  display:flex; align-items:center; gap:12px;
  padding: 12px 12px;
  border:1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  cursor:pointer;
  transition: transform .08s ease, border-color .15s ease, background .15s ease;
}
.radio:hover{ transform: translateY(-1px); border-color: rgba(34,211,238,.35); background: rgba(34,211,238,.06); }
.radio input{ accent-color: var(--accent2); transform: scale(1.12); }

.radio span{
  display:flex; align-items:baseline; justify-content:space-between;
  width:100%;
  gap:10px;
}
.radio strong{ font-size: 15.5px; }
.radio em{ font-style: normal; color: rgba(255,255,255,.70); font-size: 13px; }

.other{
  margin-top: 12px;
  padding: 12px;
  border: 1px dashed rgba(34,211,238,.35);
  border-radius: 16px;
  background: rgba(34,211,238,.08);
}
.hidden{ display:none; }

.row{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px){ .row{ grid-template-columns: 1fr; } .hero-top{ flex-direction:column; align-items:flex-start; } }

.field span{
  display:block;
  font-size: 12px;
  color: rgba(255,255,255,.85);
  margin: 10px 0 6px;
}
input, select, textarea{
  width:100%;
  border-radius: 12px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.28);
  color: var(--text);
  padding: 11px 12px;
  outline: none;
}
textarea{ resize: vertical; min-height: 120px; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(167,139,250,.55);
  box-shadow: 0 0 0 3px rgba(167,139,250,.18);
}

.hint{ margin: 8px 0 0; font-size: 12px; color: rgba(255,255,255,.72); }

.actions{ display:flex; gap: 10px; margin-top: 16px; }
.btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  cursor:pointer;
}
.btn.primary{
  border-color: rgba(34,211,238,.45);
  background: rgba(34,211,238,.14);
}
.btn:disabled{ opacity:.6; cursor:not-allowed; }

.error{
  margin: 12px 0 0;
  color: var(--danger);
  min-height: 18px;
  font-size: 13px;
}

.summary{
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.9);
  line-height: 1.55;
}

.footer{ margin-top: 14px; color: rgba(255,255,255,.55); }


/* --- Price cards layout (Mensual vs Anual) --- */
.price-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}
.price-card{
  border:1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  padding: 12px;
}
.price-card-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 8px;
}
.price-card-head h4{
  margin:0;
  font-size: 14px;
  letter-spacing: .02em;
}
.price-card-head p{
  margin:0;
  font-size: 12px;
  color: rgba(255,255,255,.70);
}
.options.compact{
  margin:0;
  gap:10px;
}
.other-card{
  margin-top: 12px;
}

@media (max-width: 760px){
  .price-grid{ grid-template-columns: 1fr; }
  .price-card-head{ flex-direction:column; align-items:flex-start; }
}
