/* ── TIPOGRAFÍA: Montserrat (manual de marca) ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,700;0,800;0,900;1,400&display=swap');

:root {
  /* ══ COLORES EXACTOS DEL MANUAL DE MARCA ══
     Neural Purple  #8145FF  — innovación, IA
     Lime Energy    #C4FB36  — crecimiento, impulso
     Onyx Core      #09090E  — confianza, fondo
     Prism Light    #FFFFFF  — claridad, texto
  */
  --morado:        #8145FF;
  --morado-dark:   #6030CC;
  --morado-light:  #A57BFF;
  --lima:          #C4FB36;
  --lima-dark:     #9fd42a;
  --bg:            #09090E;
  --bg2:           #111118;
  --blanco:        #FFFFFF;

  /* ══ TEXTO — neuromarketing ══
     --gris:      texto de cuerpo — casi blanco, legible sin fatiga
     --gris-meta: texto de apoyo mínimo (fechas, notas, labels secundarios)
     NUNCA usar --gris-meta en párrafos de contenido
  */
  --gris:          rgba(255,255,255,0.88);   /* antes 0.5 — ilegible */
  --gris-meta:     rgba(255,255,255,0.45);   /* solo para labels, fechas, copyright */
  --gris-borde:    rgba(255,255,255,0.08);

  --font-titulo:   'Montserrat', sans-serif;
  --font-body:     'Montserrat', sans-serif;

  --radio-sm:     6px;
  --radio-md:     12px;
  --radio-pill:   100px;
  --max-width:    1200px;
  --section-pad:  100px 24px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

html, body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--blanco);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ══ NEUROMARKETING TIPOGRÁFICO ══
   El ojo no lee linealmente — escanea en F.
   Los strong/b en párrafos son los ganchos que detienen el escaneo.
   Deben contrastar claramente con el texto base.
*/
p strong, p b, li strong, li b, td strong, td b {
  font-weight: 700;
  color: var(--blanco);       /* blanco puro — máximo contraste */
}

/* Negritas con acento lima: úsalas en frases de beneficio clave */
p strong.lima, .lima-bold {
  font-weight: 700;
  color: var(--lima);
}

/* font-weight 300 queda prohibido en párrafos — solo permitido en subtítulos hero */
p { font-weight: 400; }

/* Subtítulos de sección: legibles, no grises */
.hero-sub, .pp-hero-sub, .pg-hero-sub, .planes-sub,
.contacto-sub, .requisitos-sub, .testimonios-sub,
.faq-sub, .como-funciona-sub {
  font-weight: 400;
  color: rgba(255,255,255,0.82);  /* ligeramente suavizado pero legible */
  line-height: 1.75;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad); }
.text-morado { color: var(--morado); }
.text-lima   { color: var(--lima); }   /* nueva clase utilitaria */
.text-gris   { color: var(--gris); }
.font-titulo { font-family: var(--font-titulo); }

/* ══ BOTÓN PRIMARIO — Neural Purple ══ */
.btn-primary {
  display: inline-block;
  background: var(--morado);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radio-pill);
  text-decoration: none;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--morado-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(129,69,255,0.35);
}

/* ══ BOTÓN GHOST — hover Lime Energy ══ */
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--gris);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: var(--radio-pill);
  text-decoration: none;
  border: 0.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.btn-ghost:hover { border-color: var(--lima); color: var(--lima); }

/* ══ BOTÓN LIMA — variante Lime Energy (nuevo) ══ */
.btn-lima {
  display: inline-block;
  background: var(--lima);
  color: #09090E;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radio-pill);
  text-decoration: none;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.btn-lima:hover {
  background: var(--lima-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,251,54,0.3);
}

/* ══ ACENTO LIMA — clases de texto ══ */
.accent-lima  { color: var(--lima); }
.accent-morado { color: var(--morado); }

/* ══ NAV — CTA con acento lima ══ */
.nav-cta {
  border-color: rgba(196,251,54,0.4) !important;
  color: var(--lima) !important;
}
.nav-cta:hover {
  background: rgba(196,251,54,0.1) !important;
  border-color: var(--lima) !important;
}

/* ══ HERO — el .accent (en titulares) pasa a lima ══ */
.hero-headline .accent { color: var(--lima) !important; }

/* ══ FOOTER — borde superior lima, hover links lima ══ */
.footer {
  border-top: 1px solid rgba(196,251,54,0.2) !important;
}
.footer-links a:hover { color: var(--lima) !important; }

/* ══ SEPARADOR DECORATIVO LIMA — reutilizable ══ */
.sep-lima {
  width: 40px;
  height: 3px;
  background: var(--lima);
  border-radius: 2px;
  margin: 0 auto 24px;
  box-shadow: 0 0 12px rgba(196,251,54,0.5);
}

/* ══ EYEBROW LIMA — subtítulo de sección ══ */
.eyebrow-lima {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lima);
  margin-bottom: 12px;
}

/* ══ SCROLL CHECK — elementos con ✓ usan lima ══ */
.check-lima { color: var(--lima); }

@media (max-width: 768px) { :root { --section-pad: 64px 20px; } }
@media (max-width: 480px) { :root { --section-pad: 48px 16px; } }