/* ===== Ganga · gangave.com ===== */
:root {
  --purple: #39067A;
  --purple-dark: #2a0560;
  --purple-panel: #4A148C;
  --purple-soft: #f2edf9;
  --gold: #F8C300;
  --bg: #faf9fc;
  --text: #1d1a24;
  --muted: #6c6678;
  --card: #ffffff;
  --radius: 16px;
  --max: 860px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--purple);
  color: #fff;
}
.site-header .bar {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 20px; }
.brand:hover { text-decoration: none; }
.logo-mark { height: 34px; width: auto; display: block; }
.nav { margin-left: auto; display: flex; gap: 18px; }
.nav a { color: rgba(255,255,255,.9); font-size: 14px; font-weight: 600; }
.nav a:hover { color: #fff; }

/* ---- Hero (estilo banner) ---- */
.hero { position: relative; overflow: hidden; background: var(--purple); color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: var(--purple-panel);
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 48% 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 3; max-width: var(--max); margin: 0 auto; padding: 60px 20px 70px; }
.hero-brand { display: flex; align-items: center; gap: 20px; }
.hero-logo { height: 104px; width: auto; display: block; }
.hero-brand h1 { font-size: 60px; margin: 0; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.hero-tag { margin: 6px 0 0; font-size: 20px; color: rgba(255,255,255,.92); }
.hero-sub { margin: 22px 0 0; font-size: 18px; max-width: 460px; color: rgba(255,255,255,.88); }
.hero .cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Carteles y chispas del hero */
.hero-decor { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.tag {
  position: absolute; font-weight: 800; border-radius: 12px; padding: 12px 18px;
  font-size: 26px; box-shadow: 0 8px 20px rgba(0,0,0,.18);
  display: inline-flex; align-items: center; gap: 10px;
}
.tag::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--purple); }
.tag-gold { background: var(--gold); color: var(--purple); }
.tag-white { background: #fff; color: var(--purple); }
.tag-outline { background: transparent; border: 3px solid var(--gold); color: #fff; padding: 10px 16px; font-size: 20px; }
.tag-outline::before { display: none; }
.t1 { top: 16%; right: 7%; transform: rotate(-9deg); }
.t2 { top: 45%; right: 3%; transform: rotate(7deg); }
.t3 { top: 68%; right: 13%; transform: rotate(-5deg); }
.spark { position: absolute; color: var(--gold); line-height: 1; }
.s1 { top: 12%; right: 24%; font-size: 26px; }
.s2 { top: 40%; right: 27%; font-size: 18px; opacity: .85; }
.s3 { top: 80%; right: 5%; font-size: 22px; opacity: .9; }

.btn {
  display: inline-block; padding: 13px 24px; border-radius: 999px;
  font-weight: 800; font-size: 15px; cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: #1d1a24; }
.btn-gold:hover { background: #ffd21a; text-decoration: none; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-ghost:hover { border-color: #fff; text-decoration: none; }

/* ---- Sections ---- */
.section { max-width: var(--max); margin: 0 auto; padding: 56px 20px; }
.section h2 { font-size: 28px; color: var(--purple); margin: 0 0 8px; }
.lead { color: var(--muted); font-size: 17px; max-width: 640px; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; margin-top: 32px; }
.feature {
  background: var(--card); border: 1px solid #eceaf2; border-radius: var(--radius);
  padding: 22px;
}
.feature .emoji { font-size: 30px; }
.feature h3 { margin: 10px 0 6px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---- Legal / content pages ---- */
.doc { max-width: 760px; margin: 0 auto; padding: 44px 20px 72px; }
.doc h1 { color: var(--purple); font-size: 32px; margin: 0 0 6px; }
.doc .updated { color: var(--muted); font-size: 14px; margin: 0 0 28px; }
.doc h2 { color: var(--purple); font-size: 21px; margin: 34px 0 10px; }
.doc p, .doc li { font-size: 16px; }
.doc ul, .doc ol { padding-left: 22px; }
.doc .back { display: inline-block; margin-bottom: 20px; font-weight: 600; font-size: 14px; }
.callout {
  background: var(--purple-soft); border-left: 4px solid var(--purple);
  padding: 14px 18px; border-radius: 10px; margin: 18px 0;
}

/* ---- Planes (precios) ---- */
.section h1 { font-size: 34px; color: var(--purple); margin: 0 0 8px; }
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple-dark); text-decoration: none; }
.btn-wa { background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn-wa:hover { background: #1ebe5b; text-decoration: none; }
.wa-ico { width: 18px; height: 18px; flex: 0 0 auto; }

.promo-banner {
  background: var(--gold); color: var(--purple);
  border-radius: var(--radius); padding: 16px 22px; margin-top: 22px;
  font-weight: 700; text-align: center; font-size: 16px;
}

.planes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 30px; align-items: stretch; }
.plan {
  background: var(--card); border: 1px solid #eceaf2; border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column;
}
.plan.featured { border: 2px solid var(--gold); box-shadow: 0 12px 32px rgba(57,6,122,.12); }
.plan .badge {
  align-self: flex-start; background: var(--gold); color: var(--purple);
  font-weight: 800; font-size: 12px; letter-spacing: .3px;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}
.plan h3 { margin: 0; font-size: 22px; color: var(--purple); }
.plan .price { font-size: 40px; font-weight: 800; margin: 8px 0 0; color: var(--text); line-height: 1; }
.plan .price small { font-size: 15px; font-weight: 600; color: var(--muted); }
.plan ul { list-style: none; padding: 0; margin: 18px 0 24px; }
.plan li { padding: 8px 0 8px 26px; position: relative; font-size: 15px; border-top: 1px solid #f1eff6; }
.plan li:first-child { border-top: none; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--purple); font-weight: 800; }
.plan li.no { color: var(--muted); }
.plan li.no::before { content: "–"; color: var(--muted); }
.plan .btn { margin-top: auto; text-align: center; }

.pasos { counter-reset: paso; list-style: none; padding: 0; margin: 22px 0 0; }
.pasos li { position: relative; padding: 4px 0 18px 46px; }
.pasos li::before {
  counter-increment: paso; content: counter(paso);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--purple); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}

/* ---- Formulario de pago ---- */
.form-card { background: var(--card); border: 1px solid #eceaf2; border-radius: var(--radius); padding: 24px; max-width: 520px; margin: 24px auto 0; }
.field { margin: 16px 0; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 12px; border: 1px solid #d8d4e2; border-radius: 10px;
  font-size: 15px; font-family: inherit; background: #fff; color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--purple); }
.datos-cobro {
  background: var(--purple-soft); border-left: 4px solid var(--purple);
  padding: 12px 16px; border-radius: 10px; margin: 12px 0; white-space: pre-line; font-size: 14px;
}
.binance-qr { display: block; width: 220px; max-width: 80%; margin: 4px auto 12px; background: #fff; padding: 10px; border-radius: 12px; border: 1px solid #eceaf2; }
.qr-hint { text-align: center; font-size: 13px; color: var(--muted); margin: -6px 0 12px; }
.plan-radios { display: flex; gap: 12px; }
.plan-radio { flex: 1; border: 2px solid #e5e1ee; border-radius: 12px; padding: 14px; cursor: pointer; text-align: center; }
.plan-radio.sel { border-color: var(--gold); background: #fffdf5; }
.plan-radio b { display: block; color: var(--purple); font-size: 17px; }
.plan-radio span { font-size: 13px; color: var(--muted); }
.metodo-tabs { display: flex; gap: 10px; }
.metodo-tab { flex: 1; border: 2px solid #e5e1ee; border-radius: 10px; padding: 10px; cursor: pointer; text-align: center; font-weight: 600; font-size: 14px; }
.metodo-tab.sel { border-color: var(--purple); background: var(--purple-soft); color: var(--purple); }
.msg { padding: 12px 14px; border-radius: 10px; margin: 12px 0; font-size: 14px; }
.msg.ok { background: #e7f6ec; color: #1b5e20; }
.msg.err { background: #fdecea; color: #b71c1c; }
.hidden { display: none !important; }
.btn-block { width: 100%; text-align: center; margin-top: 8px; border: none; cursor: pointer; }
.mini { font-size: 13px; color: var(--muted); }
.estado-pill { display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.estado-PENDIENTE { background: #fff3cd; color: #856404; }
.estado-APROBADO { background: #e7f6ec; color: #1b5e20; }
.estado-RECHAZADO { background: #fdecea; color: #b71c1c; }

/* ---- Footer ---- */
.site-footer { background: var(--purple-dark); color: rgba(255,255,255,.8); margin-top: 40px; }
.site-footer .inner { max-width: var(--max); margin: 0 auto; padding: 32px 20px; display: flex; flex-wrap: wrap; gap: 20px 40px; }
.site-footer a { color: rgba(255,255,255,.85); font-size: 14px; display: block; margin: 6px 0; }
.site-footer a:hover { color: #fff; }
.site-footer .col h4 { color: #fff; font-size: 15px; margin: 0 0 8px; }
.site-footer .copy { width: 100%; border-top: 1px solid rgba(255,255,255,.15); padding-top: 18px; font-size: 13px; color: rgba(255,255,255,.6); }

@media (max-width: 760px) {
  .nav { display: none; }
  .hero::before { display: none; }
  .hero-decor { display: none; }
  .hero-inner { text-align: center; padding: 48px 20px 56px; }
  .hero-brand { flex-direction: column; gap: 12px; }
  .hero-brand h1 { font-size: 46px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero .cta { justify-content: center; }
}
