/* Universidad.io — Landing pages CSS (Sprint 45)
   Prefix: .l-*
   Design system: pure black #000, white text, professional sales landing
*/

/* ── CSS VARIABLES ───────────────────────────────────────────── */
:root {
  --bg: #000;
  --bg-elevated: #0a0a0a;
  --bg-card: #111;
  --border: #1f1f1f;
  --text: #fff;
  --text-muted: #a0a0a0;
  --text-dim: #666;
  --accent-home: #3D5AFE;
  --accent-trading: #02ff94;
  --accent-metanoia: #c82929;
  --accent-crypto: #f7931a;
  --max-width: 1200px;
  --font-stack: "Inter", system-ui, -apple-system, sans-serif;
  --brand: #3D5AFE;

  /* Sprint 47.3 ref variables */
  --bg-base: #080812;
  --cta-blue: #203D94;
  --accent-orange: #FEB330;

  /* backward compat aliases */
  --l-bg: #000;
  --l-bg2: #0a0a0a;
  --l-bg3: #111;
  --l-card: #111;
  --l-border: #1f1f1f;
  --l-text: #fff;
  --l-muted: #a0a0a0;
  --l-subtle: rgba(255,255,255,0.06);
  --l-radius: 12px;
  --l-radius-sm: 8px;
  --l-font: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: #000;
  color: #fff;
  font-family: var(--font-stack);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.l-container-narrow { max-width: 780px; }
.l-container-wide { max-width: 1400px; }

.l-section { padding: 100px 0; }

.l-section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.l-section-body {
  font-size: 17px;
  color: #a0a0a0;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}

.l-section-body p { margin-bottom: 16px; }
.l-section-body p:last-child { margin-bottom: 0; }

.l-section-pretitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand, #3D5AFE);
  margin-bottom: 16px;
  display: block;
}

/* ── HERO (HOME) ─────────────────────────────────────────────── */
.l-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  background: #000;
}

.l-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.l-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.l-hero-badge {
  display: inline-block;
  background: rgba(61,90,254,0.15);
  border: 1px solid rgba(61,90,254,0.4);
  color: var(--brand, #3D5AFE);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.l-hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 24px;
}

.l-hero-subtitle {
  font-size: clamp(16px, 2vw, 22px);
  color: #a0a0a0;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.l-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.l-hero-question {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin: 32px 0;
}

.l-hero-scroll-hint {
  margin-top: 48px;
  color: #666;
  animation: bounce 2s infinite;
  display: inline-block;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── VERDAD SECTION ──────────────────────────────────────────── */
.l-verdad-section { padding: 100px 0; background: #000; }

.l-verdad-pretitle {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.l-verdad-quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.l-verdad-quote-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 24px;
  font-size: 15px;
  color: #a0a0a0;
  font-style: italic;
  position: relative;
  padding-left: 36px;
}

.l-verdad-quote-card::before {
  content: '"';
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 32px;
  color: #333;
  line-height: 1;
}

/* backward compat for older verdad classes */
.l-verdad-quote {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 15px;
  color: #a0a0a0;
  font-style: italic;
}

.l-verdad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.l-verdad-quotes { margin: 0 0 40px; }

.l-verdad-punch {
  font-size: clamp(72px, 14vw, 180px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  letter-spacing: -8px;
  line-height: 1;
  margin: 48px 0 24px;
  display: block;
}

.l-verdad-punch2 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}

.l-verdad-body {
  font-size: 17px;
  color: #a0a0a0;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}

.l-verdad-body-col { display: flex; flex-direction: column; gap: 16px; }

.l-verdad-emphasis {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
}

.l-verdad-closing {
  font-size: 16px;
  color: #a0a0a0;
  line-height: 1.8;
}

.l-verdad-question {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 48px auto 0;
  max-width: 700px;
  line-height: 1.5;
}

.l-verdad-cta-wrap { text-align: center; margin-top: 48px; }
.l-verdad-subcta { font-size: 14px; color: #666; margin-top: 16px; text-align: center; }

/* ── ARROW SECTION ───────────────────────────────────────────── */
.l-arrow-section { padding: 0 0 60px; text-align: center; }

.l-arrow-text {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.l-arrow-img { max-width: 600px; margin: 0 auto; }

/* ── CAMPUS CARDS SECTION ────────────────────────────────────── */
.l-campus-section { padding: 100px 0; background: #0a0a0a; }

.l-campus-intro {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -1px;
}

.l-campus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.l-campus-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.l-campus-card:hover { border-color: var(--brand, #3D5AFE); }

.l-campus-card-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.l-campus-icon {
  width: 48px;
  height: 48px;
  background: rgba(61,90,254,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand, #3D5AFE);
}

.l-campus-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand, #3D5AFE);
  margin-bottom: 16px;
  display: block;
}

.l-campus-card-mentor,
.l-campus-mentor {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.l-campus-card-role,
.l-campus-role {
  font-size: 14px;
  color: #a0a0a0;
  margin-bottom: 24px;
  line-height: 1.5;
}

.l-campus-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.l-campus-bullets li {
  padding: 12px 0;
  border-bottom: 1px solid #1f1f1f;
  font-size: 14px;
  color: #a0a0a0;
  line-height: 1.6;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.l-campus-bullets li::before {
  content: "→";
  color: var(--brand, #3D5AFE);
  font-weight: 700;
  flex-shrink: 0;
}

.l-campus-bullets li:last-child { border-bottom: none; }

/* ── ZONA DE CONFORT ─────────────────────────────────────────── */
.l-zona-section { padding: 80px 0; background: #000; }
.l-zona-confort { padding: 80px 0; background: #000; }

.l-zona-text,
.l-zona-confort-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.l-zona-confort-body {
  font-size: 17px;
  color: #a0a0a0;
  max-width: 700px;
  margin: 20px auto 0;
  text-align: center;
  line-height: 1.8;
}

/* ── ECOSISTEMA SECTION ──────────────────────────────────────── */
.l-ecosistema-section { padding: 100px 0; background: #0a0a0a; }

.l-ecosistema-overview {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 64px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1f1f1f;
}

.l-ecosistema-overview img {
  width: 100%;
  display: block;
}

.l-ecosistema-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1f1f1f;
}

.l-ecosistema-feature {
  background: #111;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.l-ecosistema-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.l-ecosistema-title,
.l-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.l-ecosistema-body,
.l-feature-body {
  font-size: 14px;
  color: #a0a0a0;
  line-height: 1.6;
}

/* ── CAMINOS SECTION ─────────────────────────────────────────── */
.l-caminos-section { padding: 100px 0; background: #000; }

.l-caminos-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.l-caminos-subtitle {
  font-size: 18px;
  color: #a0a0a0;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

.l-caminos-stat {
  font-size: 16px;
  color: #a0a0a0;
  text-align: center;
  margin-top: 8px;
}

.l-caminos-grid,
.l-caminos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.l-caminos-col {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 40px 32px;
}

.l-caminos-col--b,
.l-caminos-col-b {
  border-color: rgba(61,90,254,0.4);
  background: rgba(61,90,254,0.05);
}

.l-caminos-col-title {
  font-size: 18px;
  font-weight: 800;
  color: #a0a0a0;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.l-caminos-col--b .l-caminos-col-title,
.l-caminos-col-b .l-caminos-col-title { color: #fff; }

.l-caminos-bullets { list-style: none; padding: 0; margin: 0 0 32px; }

.l-caminos-bullet {
  padding: 12px 0;
  border-bottom: 1px solid #1f1f1f;
  font-size: 15px;
  color: #666;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.l-caminos-col--b .l-caminos-bullet,
.l-caminos-col-b .l-caminos-bullet { color: #fff; }

.l-caminos-bullet-bad::before { content: "✕"; color: #666; font-weight: 700; }
.l-caminos-bullet-good::before { content: "✓"; color: var(--brand, #3D5AFE); font-weight: 700; }

.l-caminos-bullet:last-child { border-bottom: none; }

.l-caminos-btn-disabled {
  width: 100%;
  padding: 18px;
  background: #1f1f1f;
  color: #444;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: not-allowed;
  text-transform: uppercase;
}

/* ── TESTIMONIALS SECTION ────────────────────────────────────── */
.l-testimonials-section { padding: 100px 0; background: #0a0a0a; overflow: hidden; }

.l-testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 24px 40px;
  scrollbar-width: none;
}

.l-testimonials-track::-webkit-scrollbar { display: none; }

.l-testimonial-card {
  flex: 0 0 360px;
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 32px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* backward compat grid for testimonials */
.l-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.l-testimonial-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.l-testimonial-text {
  font-size: 15px;
  color: #fff;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.l-testimonial-author {
  font-size: 14px;
  font-weight: 700;
  color: #a0a0a0;
}

.l-testimonials-nav { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }

/* ── CAMPUS HERO (split 50/50 for campus pages) ──────────────── */
.l-campus-hero { min-height: 100vh; display: flex; align-items: stretch; background: #000; }

.l-campus-hero-wrap {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
}

.l-campus-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  max-width: 50%;
}

.l-campus-hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.l-campus-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.l-mentor-pretitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand, #3D5AFE);
  margin-bottom: 16px;
  display: block;
}

.l-mentor-name {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

/* legacy campus hero compat */
.l-mentor-hero-name { font-size: clamp(48px, 6vw, 72px); font-weight: 900; letter-spacing: -2px; line-height: 1; }
.l-mentor-hero-role { font-size: clamp(16px, 2vw, 22px); color: #a0a0a0; margin-top: 8px; line-height: 1.5; }
.l-mentor-hero-role2 { font-size: clamp(14px, 1.5vw, 18px); color: #a0a0a0; line-height: 1.5; }

.l-campus-hero-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.l-campus-hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

/* ── QUIEN ES SECTION ────────────────────────────────────────── */
.l-quien-section { padding: 100px 0; background: #0a0a0a; }
.l-quien-es-section { padding: 100px 0; background: #0a0a0a; }

.l-quien-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.l-quien-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 600px;
}

.l-quien-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.l-quien-p {
  font-size: 16px;
  color: #a0a0a0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.l-quien-p:last-child { margin-bottom: 0; }

/* legacy compat */
.l-mentor-bio-block { display: flex; flex-direction: column; gap: 20px; }
.l-mentor-bio-p { font-size: 16px; color: #a0a0a0; line-height: 1.8; }

.big-number { color: var(--brand, #3D5AFE); font-weight: 900; font-size: 1.2em; }

/* ── DENTRO / CONSEGUIR SECTION ──────────────────────────────── */
.l-dentro-section { padding: 100px 0; background: #000; }

.l-dentro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.l-dentro-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.l-dentro-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.l-dentro-p {
  font-size: 16px;
  color: #a0a0a0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.l-dentro-p:last-child { margin-bottom: 0; }

.l-dentro-body { display: flex; flex-direction: column; gap: 16px; }

.l-conseguir-section { padding: 100px 0; background: #0a0a0a; }

.l-conseguir-bullets { list-style: none; padding: 0; margin: 0; }

.l-conseguir-bullet {
  padding: 20px 0;
  border-bottom: 1px solid #1f1f1f;
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.l-conseguir-bullet::before {
  content: "✓";
  color: var(--brand, #3D5AFE);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.l-conseguir-body { display: flex; flex-direction: column; gap: 16px; }

/* ── CIERRE / FRASES ─────────────────────────────────────────── */
.l-cierre-section { padding: 80px 0; background: #000; text-align: center; }

.l-cierre-frase1 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  font-style: italic;
}

.l-cierre-frase2 {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

/* ── POR QUE 100 SECTION ─────────────────────────────────────── */
.l-why-section { padding: 100px 0; background: #0a0a0a; }

.l-why-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -1.5px;
}

.l-why-body { max-width: 720px; margin: 0 auto; }

.l-why-p {
  font-size: 17px;
  color: #a0a0a0;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: center;
}

.l-why-p:last-child { margin-bottom: 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.l-btn-primary {
  display: inline-block;
  padding: 18px 40px;
  background: var(--brand, #3D5AFE);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  text-align: center;
  font-family: var(--font-stack);
}

.l-btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }

.l-btn-secondary {
  display: inline-block;
  padding: 18px 40px;
  background: transparent;
  border: 2px solid var(--brand, #3D5AFE);
  color: var(--brand, #3D5AFE);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  text-align: center;
  font-family: var(--font-stack);
}

.l-btn-secondary:hover { background: rgba(61,90,254,0.1); transform: translateY(-2px); }

/* legacy ghost button */
.l-btn-ghost {
  display: inline-block;
  padding: 18px 40px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: #a0a0a0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  text-align: center;
  font-family: var(--font-stack);
}
.l-btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; transform: translateY(-2px); }

.l-btn-full { width: 100%; display: block; }
.l-btn-lg { padding: 22px 48px; font-size: 18px; }

.l-btn-disabled {
  background: #1f1f1f;
  color: #444;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── PRICING SECTION ─────────────────────────────────────────── */
.l-pricing-section { padding: 100px 0; background: #000; }

.l-pricing-pretitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand, #3D5AFE);
  text-align: center;
  margin-bottom: 16px;
  display: block;
}

.l-pricing-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.l-pricing-subtitle {
  font-size: 17px;
  color: #a0a0a0;
  text-align: center;
  margin-bottom: 64px;
  line-height: 1.6;
}

.l-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.l-pricing-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.l-pricing-featured {
  border-color: var(--brand, #3D5AFE);
  background: rgba(61,90,254,0.05);
}

.l-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand, #3D5AFE);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.l-pricing-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.l-pricing-price {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 8px;
  line-height: 1;
}

.l-pricing-period { font-size: 18px; font-weight: 400; color: #a0a0a0; }

.pricing-savings {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand, #3D5AFE);
  margin-bottom: 8px;
}

.l-pricing-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 32px;
}

.l-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  flex: 1;
}

.l-pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #1f1f1f;
  font-size: 14px;
  color: #a0a0a0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.l-pricing-features li::before {
  content: "✓";
  color: var(--brand, #3D5AFE);
  font-weight: 700;
  flex-shrink: 0;
}

.l-pricing-features li:last-child { border-bottom: none; }

/* ── FAQ SECTION ─────────────────────────────────────────────── */
.l-faq-section { padding: 100px 0; background: #0a0a0a; }

.l-faq-intro {
  font-size: 17px;
  color: #a0a0a0;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  line-height: 1.8;
  font-style: italic;
}

.l-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.l-faq-item {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  overflow: hidden;
}

.l-faq-item[open] { border-color: var(--brand, #3D5AFE); }

.l-faq-q {
  padding: 24px 28px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-stack);
}

.l-faq-q::-webkit-details-marker { display: none; }

.l-faq-q::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--brand, #3D5AFE);
  flex-shrink: 0;
}

.l-faq-item[open] .l-faq-q::after { content: "−"; }

.l-faq-a {
  padding: 0 28px 24px;
  font-size: 15px;
  color: #a0a0a0;
  line-height: 1.8;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.l-footer {
  background: #050505;
  padding: 80px 24px 40px;
  border-top: 1px solid #1f1f1f;
}

.l-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.l-footer-logo { height: 40px; width: auto; display: block; margin-bottom: 16px; }

.l-footer-tagline {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  max-width: 280px;
}

.l-footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.l-footer-nav-link {
  display: block;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.l-footer-nav-link:hover { color: #fff; }

.l-footer-store { display: block; margin-bottom: 12px; }
.l-footer-store img { height: 44px; width: auto; border-radius: 8px; }

.l-footer-social { display: flex; gap: 16px; flex-wrap: wrap; }

.l-footer-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 8px;
  color: #666;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.l-footer-social-icon:hover {
  border-color: var(--brand, #3D5AFE);
  color: var(--brand, #3D5AFE);
}

.l-footer-social-icon svg { width: 20px; height: 20px; fill: currentColor; }

.l-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid #1f1f1f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.l-footer-copy { font-size: 13px; color: #444; }

.l-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

.l-footer-legal a {
  font-size: 13px;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.l-footer-legal a:hover { color: #fff; }

/* legacy footer compat */
.l-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.l-footer-brand {}

.l-footer-text { font-size: 14px; color: #666; margin-top: 8px; }

.l-footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.l-footer-link {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.l-footer-link:hover { color: #fff; }

/* ── ADMIN IMAGE OVERLAY ──────────────────────────────────────── */
[data-edit-image-id] { position: relative; cursor: pointer; }

.l-img-edit-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

[data-edit-image-id]:hover .l-img-edit-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ── LANDING NAV ─────────────────────────────────────────────── */
.l-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.l-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.l-nav-logo-img {
  height: 32px;
  mix-blend-mode: screen;
  display: block;
}

.l-nav-cta {
  font-size: 14px;
  padding: 10px 20px;
}

/* offset hero/content below fixed nav */
body:has(.l-nav) .l-hero,
body:has(.l-nav) .l-campus-hero-wrap {
  padding-top: 64px;
}

@media (max-width: 480px) {
  .l-nav-inner { padding: 0 16px; height: 56px; }
  .l-nav-cta { font-size: 13px; padding: 8px 14px; }
  body:has(.l-nav) .l-hero,
  body:has(.l-nav) .l-campus-hero-wrap { padding-top: 56px; }
}

/* ── MODAL ───────────────────────────────────────────────────── */
.l-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  padding: 20px;
}

.l-modal-bg.is-open { display: flex; }

.l-modal-card {
  background: #0a0a0a;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 420px;
  position: relative;
}

.l-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #666;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  font-family: var(--font-stack);
}

.l-modal-close:hover { color: #fff; }

.l-modal-logo { text-align: center; margin-bottom: 24px; }

.l-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.l-modal-sub {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 32px;
}

.l-form-group { margin-bottom: 20px; }
.l-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.l-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #a0a0a0;
  margin-bottom: 8px;
}

.l-input {
  width: 100%;
  padding: 14px 16px;
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  outline: none;
  font-family: var(--font-stack);
  transition: border-color 0.2s;
}

.l-input:focus { border-color: var(--brand, #3D5AFE); }

.l-textarea { resize: vertical; min-height: 100px; }

.l-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.l-alert-err {
  background: rgba(200,41,41,0.15);
  border: 1px solid rgba(200,41,41,0.4);
  color: #ff6b6b;
}

.l-alert-ok {
  background: rgba(2,255,148,0.1);
  border: 1px solid rgba(2,255,148,0.3);
  color: #02ff94;
}

.l-link { color: var(--brand, #3D5AFE); text-decoration: none; }
.l-link:hover { text-decoration: underline; }

.l-checkbox-group { display: flex; align-items: flex-start; gap: 12px; }
.l-checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #666; cursor: pointer; line-height: 1.5; }
.l-checkbox-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--brand, #3D5AFE); }

.l-modal-divider {
  text-align: center;
  font-size: 13px;
  color: #444;
  margin: 24px 0;
  position: relative;
}

.l-modal-divider::before,
.l-modal-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #1f1f1f;
}

.l-modal-divider::before { left: 0; }
.l-modal-divider::after { right: 0; }

.l-modal-forgot {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0;
}

.l-modal-forgot-link {
  font-size: 13px;
  color: #666;
  text-decoration: none;
}

.l-modal-forgot-link:hover { color: #a0a0a0; text-decoration: underline; }

.l-plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.l-plan-btn {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 8px;
  padding: 16px;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s;
}

.l-plan-btn:hover { border-color: var(--brand, #3D5AFE); }

.l-plan-featured { border-color: var(--brand, #3D5AFE); background: rgba(61,90,254,0.05); }

.l-plan-name { font-size: 13px; font-weight: 700; color: #fff; display: block; }
.l-plan-price { font-size: 12px; color: #666; display: block; }

/* ── CONTACT SECTION ─────────────────────────────────────────── */
.l-contact-section { padding: 100px 0; background: #0a0a0a; }
.l-contact-form { max-width: 600px; margin: 0 auto; }

/* ── MOBILE STICKY CTA ───────────────────────────────────────── */
.l-sticky-cta { display: none; }

/* ── ADMIN BAR SPACER ────────────────────────────────────────── */
.l-admin-bar-spacer { height: 42px; }

/* ── MISC ────────────────────────────────────────────────────── */
.l-promesa-section { padding: 80px 0; background: #0a0a0a; }
.l-promesa-emphasis { font-size: 20px; font-weight: 700; color: #fff; text-align: center; margin-top: 16px; }

.l-cta-section { padding: 100px 0; background: #000; }
.l-cta-final-section { padding: 100px 0; background: #0a0a0a; }
.l-cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.l-cta-text { font-size: 17px; color: #a0a0a0; line-height: 1.6; }

/* ── FADE IN ANIMATION ───────────────────────────────────────── */
.l-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.l-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FEATURES GRID (legacy compat) ───────────────────────────── */
.l-features-section { padding: 80px 0; }
.l-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.l-feature-card { background: #111; border: 1px solid #1f1f1f; border-radius: 12px; padding: 28px 24px; }

/* ── SPRINT 47 — FONT OVERRIDE (headings use Plus Jakarta Sans) ── */
h1, h2, h3, h4, h5, .l-verdad-title, .l-slides-heading, .l-programas-title,
.l-features-title, .l-caminos-title, .l-section-title, .l-faq-heading {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

/* ── HERO SPLIT LAYOUT (Sprint 47) ──────────────────────────── */
.l-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 900px;
  text-align: left;
}

.l-hero-text { display: flex; flex-direction: column; gap: 24px; }

.l-verdad-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.l-hero-body {
  font-size: 17px;
  color: #a0a0a0;
  line-height: 1.8;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
}

.l-hero-body--bold { color: #fff; font-weight: 700; }

.l-hero-img-wrap { display: flex; align-items: flex-end; justify-content: center; }
.l-hero-person-img { max-height: 560px; object-fit: contain; border-radius: 12px; }

/* ── REF SECTIONS (Sprint 47.3) ──────────────────────────────── */

/* Body background scoped to home page only */
body[data-slug="home"] {
  background: var(--bg-base, #080812) url('/images/landings/home/ref/night-4.jpg') repeat;
  background-size: 400px auto;
}

/* Base section */
.ref-section {
  padding: 80px 0;
  position: relative;
}

/* Hero */
.ref-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 80px;
}

.ref-hero-block1 {
  margin-bottom: 48px;
}

.ref-hero-block2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

.ref-quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 640px;
  margin-top: 32px;
}

.ref-quote-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  font-family: "DM Sans", system-ui, sans-serif;
}

.ref-mentiras-big {
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -4px;
  line-height: 1;
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.ref-se-hacen {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

/* CTA mid section */
.ref-cta-mid-section {
  padding: 64px 0;
  background: rgba(32,61,148,0.12);
  border-top: 1px solid rgba(32,61,148,0.3);
  border-bottom: 1px solid rgba(32,61,148,0.3);
}

.ref-cta-mid-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.ref-cta-mid-q {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

/* Panel layout (campus sections) */
.ref-panel {
  background: #0a0a14;
  border-radius: 24px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.ref-vert-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  left: 24px;
  top: 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.ref-panel-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
  padding-left: 32px;
}

.ref-panel-inner--reverse {
  grid-template-columns: 1fr 280px;
}

.ref-panel-inner--reverse .ref-panel-img {
  order: 2;
}

.ref-panel-inner--reverse .ref-panel-text {
  order: 1;
}

.ref-panel-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ref-panel-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Mentor image — max-width kept for Sprint 47.2 test compat */
.ref-mentor-img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

/* Campus accent tags */
.ref-campus-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: inline-block;
}

.ref-campus-tag--trading  { color: #02ff94; }
.ref-campus-tag--metanoia { color: #c82929; }
.ref-campus-tag--crypto   { color: #f7931a; }
.ref-campus-tag--default  { color: #3D5AFE; }

/* Text elements */
.ref-mentor-name {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.ref-mentor-role {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

.ref-headline {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.ref-body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
}

.ref-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ref-bullets li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.ref-bullets li::before {
  content: "\2192";
  color: #FEB330;
  font-weight: 700;
  flex-shrink: 0;
}

.ref-del {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.ref-tagline-bottom {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

/* Section header (shared) */
.ref-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.ref-pretitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FEB330;
  margin-bottom: 12px;
  display: block;
}

.ref-section-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 12px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.ref-section-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  font-family: "DM Sans", system-ui, sans-serif;
}

/* Mockup grid (chats + formacion) */
.ref-mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.ref-mockup-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ref-mockup-img {
  width: 100%;
  max-width: 240px;
  border-radius: 20px;
  display: block;
}

.ref-mockup-caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* Demo / coins images */
.ref-demo-img {
  width: 100%;
  max-width: 640px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.ref-coins-caption {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 12px;
  font-family: "DM Sans", system-ui, sans-serif;
}

/* Gamif layout */
.ref-gamif-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ref-gamif-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ref-gamif-img {
  display: flex;
  justify-content: center;
}

/* Directos layout */
.ref-directos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ref-directos-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ref-directos-img {
  display: flex;
  justify-content: center;
}

/* Schedule list */
.ref-schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ref-schedule-item {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 10px;
  align-items: center;
}

.ref-schedule-item:last-child { border-bottom: none; }

/* Brand intro */
.ref-brand-inner {
  text-align: center;
  padding: 40px 0 32px;
}

/* Brand name — clamp kept for Sprint 47.2 test compat */
.ref-brand-name {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.ref-brand-sub {
  font-size: clamp(18px, 2.5vw, 28px);
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  font-family: "DM Sans", system-ui, sans-serif;
}

.ref-brand-hook {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* CTA buttons */
.ref-cta-primary {
  background: #203D94;
  color: #fff;
  padding: 18px 25px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}

.ref-cta-primary:hover { opacity: 0.85; }

.ref-btn-nav {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, opacity 0.2s;
}

.ref-btn-nav:hover { border-color: rgba(255,255,255,0.7); opacity: 0.85; }

/* Resumen acceso */
.ref-acceso-wrap {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.ref-access-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ref-access-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ref-access-list li::before {
  content: "\2713";
  color: #FEB330;
  font-weight: 700;
  flex-shrink: 0;
}

.ref-access-list li:last-child { border-bottom: none; }

.ref-price-box {
  width: 240px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.ref-price-del {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}

.ref-price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FEB330;
  margin-bottom: 8px;
}

.ref-price-big {
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.ref-price-per {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.ref-price-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  text-align: left;
}

/* Responsive — tablet */
@media (max-width: 1024px) {
  .ref-panel {
    padding: 48px 40px;
  }
  .ref-panel-inner {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }
  .ref-panel-inner--reverse {
    grid-template-columns: 1fr 220px;
  }
  .ref-gamif-inner,
  .ref-directos-inner {
    gap: 40px;
  }
}

/* Responsive — mobile */
@media (max-width: 768px) {
  .ref-section {
    padding: 56px 0;
  }
  .ref-panel {
    padding: 40px 24px 40px 48px;
  }
  .ref-panel-inner,
  .ref-panel-inner--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ref-panel-inner--reverse .ref-panel-img,
  .ref-panel-inner--reverse .ref-panel-text {
    order: unset;
  }
  .ref-quotes-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
  .ref-mockup-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  .ref-gamif-inner,
  .ref-directos-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ref-acceso-wrap {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .ref-price-box {
    width: 100%;
    max-width: 320px;
  }
  .ref-brand-inner {
    padding: 40px 0;
  }
  .ref-mentor-img {
    max-width: 240px;
  }
}

/* ── PROGRAMAS SECTION (Sprint 47) ───────────────────────────── */
.l-programas-section {
  padding: 100px 0;
  background: #0a0a0a;
}

.l-programas-pretitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FEB330;
  text-align: center;
  margin-bottom: 16px;
  display: block;
}

.l-programas-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.l-programas-subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 56px;
}

/* ── FEATURES SECTION SPRINT 47 ──────────────────────────────── */
.l-features-pretitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 16px;
  display: block;
}

.l-features-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.l-features-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FEB330;
  text-align: center;
  margin-bottom: 64px;
  display: block;
}

.l-features-grid7 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.l-feature-item {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}

.l-feature-item:hover { border-color: rgba(254,179,48,0.4); }

.l-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(254,179,48,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.l-feature-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* override .l-feature-body already exists with same styles */

/* ── CAMINOS SECTION SPRINT 47 additions ─────────────────────── */
.l-caminos-header { text-align: center; margin-bottom: 56px; }

.l-caminos-sub {
  font-size: 17px;
  color: #a0a0a0;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.l-caminos-quote {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

.l-caminos-footer-quote {
  text-align: center;
  margin-top: 48px;
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
}

/* ul modifiers for caminos bullets (li elements, not .l-caminos-bullet class) */
.l-caminos-bullets--bad li {
  padding: 12px 0;
  border-bottom: 1px solid #1f1f1f;
  font-size: 15px;
  color: #555;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.l-caminos-bullets--bad li:last-child { border-bottom: none; }

.l-caminos-bullets--bad li::before {
  content: "✕";
  color: #444;
  font-weight: 700;
  flex-shrink: 0;
}

.l-caminos-bullets--good li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(61,90,254,0.15);
  font-size: 15px;
  color: #fff;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.l-caminos-bullets--good li:last-child { border-bottom: none; }

.l-caminos-bullets--good li::before {
  content: "✓";
  color: var(--brand, #3D5AFE);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FAQ SECTION SPRINT 47 additions ─────────────────────────── */
.l-faq-pretitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand, #3D5AFE);
  text-align: center;
  margin-bottom: 16px;
  display: block;
}

.l-faq-heading {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* ── RESPONSIVE SPRINT 47 ────────────────────────────────────── */
@media (max-width: 1024px) {
  .l-features-grid7 { grid-template-columns: repeat(3, 1fr); }
  .l-hero-split { max-width: 100%; }
}

@media (max-width: 768px) {
  .l-slide-card { min-height: 360px; }
  .l-slide-body { padding: 24px 16px 48px 48px; }
  .l-slide-body--center { padding: 24px 16px 48px; }
  .l-slide-body--right { padding-right: 16px; }
  .l-slide-body--split { flex-direction: column; padding: 24px 16px; }
  .l-slide-price-box { width: 100%; }
  .l-slide-mockups { flex-direction: column; align-items: center; }
  .l-slide-mockup-cell { max-width: 160px; }
  .l-features-grid7 { grid-template-columns: repeat(2, 1fr); }
  .l-hero-split { gap: 24px; }
}

@media (max-width: 480px) {
  .l-features-grid7 { grid-template-columns: 1fr; }
  .l-carousel-prev { left: 4px; }
  .l-carousel-next { right: 4px; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .l-campus-cards { grid-template-columns: 1fr; }
  .l-ecosistema-grid { grid-template-columns: repeat(2, 1fr); }
  .l-footer-grid { grid-template-columns: 1fr 1fr; }
  .l-campus-hero-left { max-width: 100%; padding: 60px 40px; }
  .l-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .l-features-grid { grid-template-columns: repeat(2, 1fr); }
  .l-verdad-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .l-section { padding: 60px 0; }
  .l-caminos-grid,
  .l-caminos { grid-template-columns: 1fr; }
  .l-pricing-grid { grid-template-columns: 1fr; }
  .l-quien-layout { grid-template-columns: 1fr; }
  .l-dentro-layout { grid-template-columns: 1fr; }
  .l-campus-hero-wrap { flex-direction: column; }
  .l-campus-hero-right { display: none; }
  .l-campus-hero-left { max-width: 100%; padding: 60px 24px; }
  .l-hero-title { letter-spacing: -2px; }
  .l-verdad-punch { letter-spacing: -4px; }
  .l-testimonials-grid { grid-template-columns: 1fr; }
  .l-features-grid { grid-template-columns: 1fr; }
  .l-footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .l-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .l-section { padding: 48px 0; }
  .l-verdad-quotes { grid-template-columns: 1fr; }
  .l-ecosistema-grid { grid-template-columns: 1fr; }
  .l-footer-grid { grid-template-columns: 1fr; }
  .l-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #000;
    border-top: 1px solid #1f1f1f;
    padding: 16px 20px;
  }
  .l-sticky-cta .l-btn-primary { width: 100%; display: block; }
}
