:root {
  --violet: #2a1e5c;
  --violet-dark: #22183f;
  --pink: #ff5c8a;
  --pink-dark: #e8456f;
  --gold: #ffc247;
  --light: #fbf7ff;
  --text: #221a3d;
  --muted: #6b6391;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(42, 30, 92, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}

.container { width: min(1120px, 92%); margin: 0 auto; }

a { color: inherit; text-decoration: none; }

.accent { color: var(--pink); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee6f8;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.35rem; }
.brand-logo { width: 38px; height: 38px; display: block; }
.brand-name { color: var(--violet); }

.nav-links { display: flex; gap: 26px; font-weight: 600; color: var(--muted); }
.nav-links a:hover { color: var(--pink); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 8px 20px rgba(255, 92, 138, 0.35); }
.btn-primary:hover { background: var(--pink-dark); }

.btn-ghost { background: transparent; color: var(--violet); border-color: var(--violet); }
.btn-ghost:hover { background: var(--violet); color: #fff; }

.btn-outline { background: transparent; color: var(--violet); border-color: #d9cdf0; }
.btn-outline:hover { background: #f4edff; }

.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }

/* ---------- HERO ---------- */
.hero { background: linear-gradient(160deg, #f6f0ff 0%, #ffeaf1 100%); padding: 80px 0 90px; overflow: hidden; }

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }

.badge {
  display: inline-block; background: #fff; color: var(--violet);
  border: 1px solid #e6dcfa; padding: 6px 14px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700; margin-bottom: 18px;
}
.badge-light { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); color: #fff; }

.hero h1 { font-size: 3.1rem; line-height: 1.1; font-weight: 800; color: var(--violet); margin-bottom: 16px; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 520px; margin-bottom: 26px; }

.hero-cta { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }

.hero-points { list-style: none; display: flex; flex-direction: column; gap: 8px; color: var(--text); font-weight: 600; font-size: 0.95rem; }

.hero-visual { display: flex; justify-content: center; }

.scene { position: relative; width: 300px; height: 300px; }
.scene-box { width: 220px; height: 220px; filter: drop-shadow(0 24px 34px rgba(42, 30, 92, 0.3)); animation: float 4s ease-in-out infinite; }

.spark { position: absolute; color: var(--gold); font-size: 2rem; animation: twinkle 2.4s ease-in-out infinite; }
.s1 { top: 0; right: 10px; }
.s2 { bottom: 30px; left: 0; font-size: 1.4rem; animation-delay: 0.8s; }
.s3 { top: 70px; left: -10px; font-size: 1.2rem; animation-delay: 1.5s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes twinkle { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

/* ---------- SECTIONS ---------- */
.section { padding: 80px 0; }

.section-title { font-size: 2.2rem; font-weight: 800; color: var(--violet); text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--muted); max-width: 620px; margin: 0 auto 48px; }

.section-dark { background: linear-gradient(150deg, var(--violet-dark), #3a2b7e); color: #fff; }

.section-dark .section-title { color: #fff; }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.step {
  background: #fff; border: 1px solid #eee6f8; border-radius: var(--radius);
  padding: 28px 22px; box-shadow: var(--shadow); position: relative;
}
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--violet); }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ---------- VIDEO ---------- */
.video-block { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.video-text h2 { font-size: 2rem; font-weight: 800; margin: 14px 0 18px; }
.video-text p { color: #cfc6ef; margin-bottom: 18px; max-width: 460px; }
.video-text strong { color: var(--gold); }
.video-text .hero-points { color: #fff; }

.video-frame { position: relative; }
.video-mock {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.video-bar {
  background: var(--violet); color: #fff; font-size: 0.8rem; font-weight: 600;
  padding: 10px 16px; display: flex; align-items: center; gap: 8px;
}
.rec { width: 10px; height: 10px; border-radius: 50%; background: #ff3b3b; animation: twinkle 1.4s infinite; }
.video-screen { position: relative; display: flex; align-items: center; justify-content: center; background: #22183f; height: 240px; }
.video-screen img { width: 130px; opacity: 0.5; }
.play {
  position: absolute; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255, 92, 138, 0.95); color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 92, 138, 0.5); cursor: pointer;
}
.qr {
  position: absolute; bottom: -16px; right: 24px;
  background: #fff; color: var(--violet); font-weight: 800; letter-spacing: 1px;
  width: 64px; height: 64px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); border: 3px dashed var(--pink);
}

/* ---------- CALENDAR ---------- */
.calendar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.month {
  background: #fff; border: 1px solid #eee6f8; border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 6px 18px rgba(42, 30, 92, 0.08);
  transition: transform 0.2s ease;
}
.month:hover { transform: translateY(-4px); }

.month-head { color: #fff; font-weight: 800; font-size: 0.85rem; letter-spacing: 1px; padding: 10px 16px; }

.ene { background: #e8456f; } .feb { background: #d63384; } .mar { background: #9c4dc4; }
.abr { background: #7d5bb0; } .may { background: #f2748f; } .jun { background: #f28c4f; }
.jul { background: #3f8fb8; } .ago { background: #2f9e8f; } .sep { background: #e0a332; }
.oct { background: #5a4a8a; } .nov { background: #2a1e5c; } .dic { background: #b3344f; }

.month h3 { font-size: 1rem; padding: 14px 16px 4px; color: var(--violet); }
.month p { font-size: 0.85rem; color: var(--muted); padding: 0 16px 16px; }

/* ---------- PLANS ---------- */
.section-plans { background: var(--light); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.plans-two { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
.radio-cards-two { grid-template-columns: repeat(2, 1fr); }

/* ---------- INVEST (INVERSION) ---------- */
.section-invest { background: var(--light); }

.invest-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.invest-card {
  background: #fff; border: 1px solid #eee6f8; border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow); text-align: center;
}
.invest-card p strong { color: var(--pink); }
.invest-card h3 { font-size: 1rem; color: var(--violet); margin-bottom: 6px; }
.invest-card p { font-size: 0.88rem; color: var(--muted); }

.invest-args {
  background: #fff; border: 1px solid #eee6f8; border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow);
}
.invest-args h3 { font-size: 1.3rem; color: var(--violet); margin-bottom: 20px; text-align: center; }
.args-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.arg h4 { color: var(--violet); font-size: 1.02rem; margin-bottom: 6px; }
.arg p { color: var(--muted); font-size: 0.92rem; }

.invest-cta { text-align: center; margin-top: 30px; }
.invest-cta p { color: var(--muted); max-width: 560px; margin: 0 auto 18px; font-size: 1rem; }

@media (max-width: 960px) {
  .invest-stats { grid-template-columns: repeat(2, 1fr); }
  .args-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .invest-stats { grid-template-columns: 1fr; }
}

/* ---------- SOSTENIBILIDAD ---------- */
.eco { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }.eco-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius); padding: 28px 24px;
}
.eco-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.eco-item h3 { font-size: 1.05rem; color: #fff; margin-bottom: 8px; }
.eco-item p { font-size: 0.92rem; color: #cfc6ef; }

@media (max-width: 960px) {
  .eco { grid-template-columns: 1fr; }
}

.plan {
  background: #fff; border-radius: var(--radius); border: 1px solid #eee6f8;
  padding: 34px 28px; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.plan-badge {
  align-self: flex-start; background: #f4edff; color: var(--violet);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.plan h3 { font-size: 1.35rem; color: var(--violet); }
.plan-size { font-size: 0.9rem; color: var(--pink); font-weight: 700; margin: 4px 0 18px; }
.plan-price { font-size: 2.1rem; font-weight: 800; color: var(--violet); margin-bottom: 14px; }
.plan-price span { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.plan ul { list-style: none; margin-bottom: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.plan li { font-size: 0.93rem; color: var(--muted); padding-left: 22px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--pink); font-weight: 800; }

.plan-featured { border: 2px solid var(--pink); transform: scale(1.03); }
.plan-featured .plan-badge { background: var(--pink); color: #fff; }

.plan-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: #fff; border: 1px solid #eee6f8; border-radius: var(--radius);
  padding: 18px 22px; cursor: pointer; box-shadow: 0 4px 12px rgba(42, 30, 92, 0.06);
}
.faq summary { font-weight: 700; color: var(--violet); cursor: pointer; }
.faq p { color: var(--muted); margin-top: 12px; font-size: 0.93rem; }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(140deg, var(--pink), var(--violet)); }
.cta-inner { text-align: center; color: #fff; }
.cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.cta p { opacity: 0.9; margin-bottom: 26px; }
.cta .btn-primary { background: #fff; color: var(--violet); box-shadow: none; }
.cta .btn-primary:hover { background: var(--gold); color: var(--violet); }

/* ---------- FOOTER ---------- */
.footer { background: var(--violet-dark); color: #cfc6ef; padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer .brand-name { color: #fff; }
.footer-text { font-size: 0.9rem; }
.footer-copy { font-size: 0.8rem; opacity: 0.6; }

.footer-links {
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
  margin-top: 6px;
}
.footer-links a { color: #cfc6ef; font-size: 0.88rem; transition: color 0.15s ease; }
.footer-links a:hover { color: var(--gold); }

.footer-social { display: inline-flex; align-items: center; gap: 6px; }
.footer-social svg { transition: transform 0.15s ease; }
.footer-social:hover svg { transform: scale(1.15); }

/* ---------- FORM (CONTACTO) ---------- */
.hero-form { padding: 56px 0 40px; }
.hero-form h1 { font-size: 2.2rem; }
.hero-form .lead { margin-bottom: 0; }

.form-wrap { max-width: 860px; }

.order-form { display: flex; flex-direction: column; gap: 26px; }

.form-section {
  border: 1px solid #eee6f8; border-radius: var(--radius);
  padding: 28px; background: #fff; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 18px;
}
.form-section legend {
  padding: 0 10px; font-size: 1.15rem; font-weight: 800; color: var(--violet);
}
.step-num-sm {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; margin-right: 8px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff; font-size: 0.9rem; font-weight: 800;
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.form-full { grid-column: 1 / -1; }

.form-field label { font-size: 0.85rem; font-weight: 700; color: var(--violet); }
.form-field input {
  padding: 12px 14px; border: 2px solid #e8dffb; border-radius: 12px;
  font-size: 0.95rem; font-family: inherit; background: var(--light);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus {
  outline: none; border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 92, 138, 0.15);
}

.radio-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.radio-card {
  border: 2px solid #e8dffb; border-radius: 14px; padding: 16px;
  cursor: pointer; display: flex; flex-direction: column; gap: 4px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.radio-card:hover { border-color: var(--pink); }
.radio-card input { position: absolute; opacity: 0; }
.radio-card:has(input:checked) {
  border-color: var(--pink); background: #fff1f6;
  box-shadow: 0 0 0 4px rgba(255, 92, 138, 0.15);
}
.radio-title { font-weight: 800; color: var(--violet); }
.radio-sub { font-size: 0.82rem; color: var(--muted); }

.checkbox { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--muted); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; accent-color: var(--pink); }

.checkbox-legal { font-size: 0.88rem; }
.checkbox-legal a { color: var(--pink); text-decoration: underline; }

/* pago */
.card-pay {
  background: linear-gradient(150deg, var(--violet-dark), #3a2b7e);
  border-radius: var(--radius); padding: 26px; color: #fff;
}
.card-pay-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; font-weight: 700; }
.card-icons { display: flex; align-items: center; gap: 8px; }
.pay-lock { font-size: 1rem; }
.pay-brand {
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25);
  padding: 3px 10px; border-radius: 8px; font-size: 0.72rem; font-weight: 800; letter-spacing: 1px;
}
.card-pay .form-field label { color: #fff; }
.card-pay .form-field input {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.card-pay .form-field input::placeholder { color: rgba(255,255,255,0.45); }
.card-pay .form-field input:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(255, 194, 71, 0.2);
}

.btn-submit { align-self: center; padding: 16px 44px; font-size: 1.05rem; }

.form-result {
  background: #e8f9ef; border: 2px solid #3fbf77; border-radius: var(--radius);
  padding: 22px 26px; color: #1c7a48; text-align: center;
}
.form-result h3 { margin-bottom: 6px; }

/* ---------- LEGAL ---------- */
.legal { max-width: 760px; }
.legal h1 { font-size: 2.2rem; color: var(--violet); margin-bottom: 6px; }
.legal-date { color: var(--muted); font-size: 0.85rem; margin-bottom: 26px; }
.legal h2 { font-size: 1.15rem; color: var(--violet); margin: 26px 0 8px; }
.legal p, .legal li { color: var(--muted); font-size: 0.95rem; }
.legal ul { padding-left: 22px; display: flex; flex-direction: column; gap: 6px; margin-top: 6px; }
.legal a { color: var(--pink); text-decoration: underline; }
.btn-legal-back { margin-top: 30px; }

.table {
  width: 100%; border-collapse: collapse; margin: 14px 0 20px;
  font-size: 0.9rem; background: #fff; border-radius: var(--radius);
  overflow: hidden; border: 1px solid #eee6f8;
}
.table th {
  background: var(--violet); color: #fff; text-align: left;
  padding: 12px 14px; font-weight: 700;
}
.table td { padding: 10px 14px; border-top: 1px solid #eee6f8; color: var(--muted); }
.table tr:nth-child(even) td { background: var(--light); }
.table strong { color: var(--violet); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-grid, .video-block { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .calendar { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan-featured { transform: none; }
  .hero h1 { font-size: 2.4rem; }
  .nav-links { display: none; }
  .radio-cards { grid-template-columns: 1fr; }
  .radio-cards-two { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .plans-two { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .calendar { grid-template-columns: repeat(2, 1fr); }
}
