/* =========================================================
   LP CESBA Virtual — Plantilla SEO
   Estilos específicos de la landing page (encima del DS)
   ========================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--fg-on-light);
  background: var(--cesba-off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ---------- Density modes (Tweak) ---------- */
:root {
  --lp-section-y: 96px;
  --lp-stack: 24px;
  --lp-prose: 18px;
  --lp-prose-lh: 1.75;
}
body[data-density="compact"] {
  --lp-section-y: 64px;
  --lp-stack: 18px;
  --lp-prose: 16px;
  --lp-prose-lh: 1.65;
}

/* ---------- Container ---------- */
.lp-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.lp-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--cesba-navy);
  border-bottom: 1px solid var(--border-on-dark);
}
.lp-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.lp-logo img { height: 36px; width: auto; display: block; }
.lp-nav {
  display: flex; gap: 28px; align-items: center;
}
.lp-nav a {
  color: #fff; text-decoration: none;
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  transition: color .2s var(--ease-out);
}
.lp-nav a:hover { color: var(--cesba-green); }
.lp-header__cta {
  display: flex; gap: 10px; align-items: center;
}
.lp-pill {
  color: #fff; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 12px;
  padding: 9px 18px; border: 1px solid rgba(255,255,255,0.30);
  border-radius: 999px;
  transition: all .2s var(--ease-out);
}
.lp-pill:hover { background: rgba(255,255,255,0.08); }
.lp-pill--green { background: var(--cesba-green); color: var(--cesba-navy); border-color: var(--cesba-green); }
.lp-pill--green:hover { background: var(--cesba-green-600); }

@media (max-width: 900px) {
  .lp-nav { display: none; }
  .lp-header__cta .lp-pill:not(.lp-pill--green) { display: none; }
}

/* ---------- Reading progress bar ---------- */
.lp-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 80;
  pointer-events: none;
}
.lp-progress__fill {
  height: 100%; width: 0%;
  background: var(--cesba-green);
  transition: width .1s linear;
}

/* ---------- Hero ---------- */
.lp-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* Variant A — Full-bleed */
.lp-hero--fullbleed {
  min-height: 600px;
  display: flex; align-items: center;
  background: var(--cesba-navy);
}
.lp-hero--fullbleed .lp-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("https://images.unsplash.com/photo-1543269865-cbf427effbad?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
}
.back-admin{
  background-image: url("../images/administracion/banner-admin-2.webp") !important;
}
.back-derecho{
  background-image: url("../images/derecho/banner-derecho.webp") !important;
}
.back-pedagogia{
  background-image: url("../images/pedagogia/baner-pedagogia-medium.webp") !important;
}
.back-generales{
  background-image: url("../images/generales/banner-general.webp") !important;
}
.lp-hero--fullbleed .lp-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(88,254,189,0.14), transparent 55%),
    linear-gradient(135deg, rgba(10,23,54,0.92) 0%, rgba(16,32,71,0.84) 50%, rgba(27,45,94,0.74) 100%);
}
.lp-hero--fullbleed .lp-hero__inner {
  position: relative; z-index: 2;
  padding: 96px 0;
  max-width: 820px;
}

/* Variant B — Split */
.lp-hero--split { background: var(--cesba-navy); }
.lp-hero--split .lp-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.lp-hero--split .lp-hero__media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-on-dark);
  aspect-ratio: 4 / 5;
  background: var(--cesba-navy-700);
  position: relative;
}
.lp-hero--split .lp-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.lp-hero--split .lp-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(16,32,71,0.55) 100%);
}
@media (max-width: 900px) {
  .lp-hero--split .lp-hero__inner { grid-template-columns: 1fr; padding: 56px 0; }
  .lp-hero--split .lp-hero__media { aspect-ratio: 16 / 11; order: -1; }
}

/* Variant C — Solid (con shape decorativa) */
.lp-hero--solid {
  background:
    radial-gradient(ellipse at 85% 20%, rgba(88,254,189,0.18), transparent 50%),
    linear-gradient(135deg, #0A1736 0%, #102047 60%, #1B2D5E 100%);
}
.lp-hero--solid .lp-hero__inner {
  padding: 96px 0;
  max-width: 820px;
  position: relative; z-index: 2;
}
.lp-hero--solid::before {
  content: "";
  position: absolute;
  right: -120px; top: 50%;
  width: 520px; height: 520px;
  border: 2px solid rgba(88,254,189,0.30);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.lp-hero--solid::after {
  content: "";
  position: absolute;
  right: -40px; top: 50%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(88,254,189,0.18), transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Hero copy */
.lp-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cesba-green);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(88,254,189,0.35);
  border-radius: 999px;
  background: rgba(88,254,189,0.08);
}
.dvh1 h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 5.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-wrap: balance;
  word-break: break-word;
  overflow-wrap: anywhere;
  /* hyphens: auto; */
}
.dvh1 h1 strong { color: var(--cesba-green); }
.lp-hero__sub, .lp-hero__sub p {
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 24px 0 32px;
}
.lp-hero__ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 14px;
  transition: all .22s var(--ease-out);
}
.lp-btn--primary {
  background: var(--cesba-green);
  color: var(--cesba-navy);
  box-shadow: 0 8px 24px rgba(88,254,189,0.25);
}
.lp-btn--primary:hover {
  background: var(--cesba-green-600);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(88,254,189,0.35);
}
.lp-btn--primary:active { background: var(--cesba-green-700); color: #fff; transform: translateY(0); }
.lp-btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 13px 28px;
}
.lp-btn--ghost:hover { background: rgba(255,255,255,0.10); border-color: #fff; }
.lp-btn svg { width: 18px; height: 18px; }

/* ---------- Trust strip (under hero) ---------- */
.lp-trust {
  background: var(--cesba-navy-800);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}
.lp-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 0;
}
.lp-trust__item {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.lp-trust__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--cesba-green);
  line-height: 1;
}
@media (max-width: 900px) {
  .lp-trust__inner { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 540px) {
  .lp-trust__inner { grid-template-columns: 1fr; }
}

/* ---------- Body layout: sidebar + content ---------- */
.lp-body {
  background: var(--cesba-off-white);
  color: var(--cesba-navy);
  padding: var(--lp-section-y) 0;
}
.lp-body__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
body[data-sidebar="right"] .lp-body__grid {
  grid-template-columns: 1fr 280px;
}
body[data-sidebar="right"] .lp-toc { order: 2; }
body[data-sidebar="right"] .lp-content { order: 1; }

@media (max-width: 1024px) {
  .lp-body__grid { grid-template-columns: 1fr; gap: 32px; }
  body[data-sidebar="right"] .lp-toc { order: -1; }
}

/* ---------- TOC sidebar (desktop) ---------- */
.lp-toc {
  position: sticky;
  top: 10px;
  align-self: start;
}
.lp-toc__card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.lp-toc__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cesba-green-700);
  margin-bottom: 12px;
}
.lp-toc__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--cesba-navy);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.lp-toc__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
  border-left: 2px solid var(--neutral-200);
}
.lp-toc__list a {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-600);
  text-decoration: none;
  padding: 10px 14px 10px 18px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  transition: all .18s var(--ease-out);
  line-height: 1.4;
  position: relative;
}
.lp-toc__list a:hover {
  color: var(--cesba-navy);
  background: var(--cesba-off-white);
}
.lp-toc__list a.is-active {
  color: var(--cesba-navy);
  border-left-color: var(--cesba-green);
  background: rgba(88,254,189,0.10);
  font-weight: 700;
}
.lp-toc__num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cesba-green-700);
  margin-right: 10px;
  font-variant-numeric: tabular-nums;
}
.lp-toc__cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--neutral-200);
}
.lp-toc__cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--cesba-navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s var(--ease-out);
}
.lp-toc__cta-btn:hover { background: var(--cesba-navy-700); }

/* ---------- TOC mobile (drawer FAB) ---------- */
.lp-toc-fab {
  display: none;
  position: fixed;
  bottom: 96px; right: 20px;
  z-index: 70;
  background: var(--cesba-navy);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  cursor: pointer;
  align-items: center;
  gap: 10px;
}
.lp-toc-fab svg { width: 18px; height: 18px; }

.lp-toc-drawer {
  display: none;
  position: fixed; inset: 0;
  z-index: 90;
  background: rgba(6,14,36,0.55);
  backdrop-filter: blur(2px);
}
.lp-toc-drawer.is-open { display: flex; align-items: flex-end; }
.lp-toc-drawer__panel {
  width: 100%;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 24px 24px 32px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideUp .3s var(--ease-out);
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.lp-toc-drawer__handle {
  width: 48px; height: 4px;
  background: var(--neutral-300);
  border-radius: 999px;
  margin: 0 auto 16px;
}
.lp-toc-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.lp-toc-drawer__close {
  background: var(--neutral-100);
  border: 0;
  border-radius: 999px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lp-toc-drawer__close svg { width: 18px; height: 18px; }

@media (max-width: 1024px) {
  .lp-toc { display: none; }
  .lp-toc-fab { display: inline-flex; }
}

/* ---------- Article / content ---------- */
.lp-content {
  max-width: 760px;
  width: 100%;
}
.lp-section {
  scroll-margin-top: 100px;
  margin-bottom: 72px;
}
.lp-section:last-child { margin-bottom: 0; }

.lp-section__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cesba-green-700);
  margin-bottom: 12px;
  padding: 4px 10px;
  background: rgba(88,254,189,0.18);
  border-radius: 999px;
}
.lp-content h2, .titleoti {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--cesba-navy);
  margin: 100px 0 30px;
  text-wrap: balance;
}
.titleoti {
  margin-top: 0;
  margin-bottom: 70px;
  font-size: 48px;
}
.lp-content h2:first-child{
  margin: 0px 0 30px !important;
}
.lp-content h3, .texth3sb {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: var(--cesba-navy);
  margin: 36px 0 12px;
  text-wrap: balance;
}
.list-other-info{
  padding: 0 0 0px 20px;
  list-style: none;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.25;
  color: var(--cesba-navy);
  margin: 36px 0 12px;
  text-wrap: balance;
}
.list-other-info li{
  margin-bottom: 10px;
  transition: 0.5s all;
}
.list-other-info li a:hover{
  text-decoration: underline;
}
.lp-content p {
  font-family: var(--font-sans);
  font-size: var(--lp-prose);
  line-height: var(--lp-prose-lh);
  color: var(--neutral-700);
  margin: 0 0 var(--lp-stack);
  text-wrap: pretty;
}
.lp-content p strong { color: var(--cesba-navy); font-weight: 700; }
.lp-content a.lp-link { color: var(--cesba-green-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.lp-content a.lp-link:hover { color: var(--cesba-navy); }

.lp-content ul {
  font-family: var(--font-sans);
  font-size: var(--lp-prose);
  line-height: var(--lp-prose-lh);
  color: var(--neutral-700);
  padding-left: 0;
  margin: 0 0 var(--lp-stack);
  list-style: none;
}
.lp-content ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
}
.lp-content ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 18px; height: 18px;
  background: var(--cesba-green);
  border-radius: 999px;
}
.lp-content ul li::after {
  content: "";
  position: absolute;
  left: 5px; top: 14px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--cesba-navy);
  border-bottom: 2px solid var(--cesba-navy);
  transform: rotate(-45deg);
}

/* Featured image inside section */
.lp-figure {
  margin: 24px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--neutral-100);
}
.lp-figure img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.lp-figure figcaption {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(16,32,71,0.85);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* Highlight callout */
.lp-callout {
  display: flex; gap: 16px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(88,254,189,0.14), rgba(88,254,189,0.04));
  border: 1px solid rgba(88,254,189,0.40);
  border-left: 4px solid var(--cesba-green);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 24px 0;
}
.lp-callout__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--cesba-green);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cesba-navy);
}
.lp-callout__icon svg { width: 20px; height: 20px; }
.lp-callout p { margin: 0; color: var(--cesba-navy); font-weight: 500; }

/* Stats grid in a section */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.lp-stat {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.lp-stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  color: var(--cesba-green-700);
  letter-spacing: -0.02em;
}
.lp-stat__label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-600);
  margin-top: 6px;
}
@media (max-width: 640px) { .lp-stats { grid-template-columns: 1fr; } }

/* Curriculum grid */
.lp-curriculum {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.lp-curriculum__item {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--cesba-navy);
}
.lp-curriculum__num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--cesba-navy);
  color: var(--cesba-green);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}
@media (max-width: 640px) { .lp-curriculum { grid-template-columns: 1fr; } }

/* FAQ-like box */
.lp-faq {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}
.lp-faq summary, .lp-faq h3 {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--cesba-navy);
  user-select: none;
}
.lp-faq summary::-webkit-details-marker, .lp-faq h3::-webkit-details-marker { display: none; }
.lp-faq summary::after, .lp-faq h3::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--cesba-green-700);
  transition: transform .2s var(--ease-out);
  line-height: 1;
}
.lp-faq[open] summary::after, .lp-faq[open] h3::after { content: "−"; }
.lp-faq[open] summary, .lp-faq[open] h3 { border-bottom: 1px solid var(--neutral-200); }
.lp-faq__body, .lp-faq p {
  padding: 18px 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--neutral-700);
}

/* ---------- CTA section (lead form) ---------- */
.lp-cta {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(88,254,189,0.18), transparent 55%),
    var(--cesba-navy);
  color: #fff;
  padding: var(--lp-section-y) 0;
  position: relative;
  overflow: hidden;
}
.lp-cta__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}
.lp-cta__copy h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}
.lp-cta__copy h2 .accent { color: var(--cesba-green); }
.lp-cta__copy p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0 0 28px;
}
.lp-cta__bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.lp-cta__bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.lp-cta__bullets svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--cesba-green);
}
.lpinputsnames input {
  width: 32.7% !important;
  display: inline-block;
}
.lp-card {
  background: #fff;
  color: var(--cesba-navy);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.30);
  position: relative;
}
/* .lp-card::before {
  content: "";
  position: absolute;
  top: -12px; right: 36px;
  background: var(--cesba-green);
  color: var(--cesba-navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
} */
.lp-card[data-badge]::before { content: attr(data-badge); }

.lp-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 8px;
}
.lp-card__sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--neutral-600);
  margin: 0 0 24px;
}

.lp-form { display: grid; gap: 14px; }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-field { display: grid; gap: 6px; }
.lp-field label {
  font-family: var(--font-display);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-600);
}
.lp-field input, .lp-field select, .lp-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  background: #fff;
  color: var(--cesba-navy);
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
  width: 100%;
}
.lp-field input:focus, .lp-field select:focus, .lp-field textarea:focus {
  outline: none;
  border-color: var(--cesba-green);
  box-shadow: 0 0 0 4px rgba(88,254,189,0.28);
}
.lp-form .lp-btn--primary { margin-top: 6px; width: 100%; }
.lp-card__legal {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--neutral-500);
  margin: 14px 0 0;
  line-height: 1.4;
  text-align: center;
}
.lp-card__legal a { color: var(--cesba-green-700); text-decoration: underline; }

.lp-form-success {
  text-align: center;
  padding: 12px 0;
}
.lp-form-success__icon {
  width: 64px; height: 64px;
  background: var(--cesba-green);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--cesba-navy);
}
.lp-form-success__icon svg { width: 32px; height: 32px; stroke-width: 3; }
.lp-form-success h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; color: var(--cesba-navy);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.lp-form-success p { color: var(--neutral-600); margin: 0; font-size: 15px; }

@media (max-width: 900px) {
  .lp-cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-form-row { grid-template-columns: 1fr; }
  .lp-card { padding: 28px 24px; }
}

/* ---------- Footer ---------- */
.lp-footer {
  background: var(--cesba-navy-900);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 28px;
}
.lp-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-on-dark);
}
.lp-footer__logo { height: 38px; width: auto; }
.lp-footer__nav {
  display: flex; flex-wrap: wrap; gap: 24px 28px;
  justify-content: center;
}
.lp-footer__nav a {
  color: #fff; text-decoration: none;
  font-family: var(--font-sans); font-weight: 600; font-size: 13px;
}
.lp-footer__nav a:hover { color: var(--cesba-green); }
.lp-footer__social { display: flex; gap: 8px; }
.lp-social {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--cesba-green);
  color: var(--cesba-navy);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.lp-social:hover { background: var(--cesba-green-600); }
.lp-social svg { width: 18px; height: 18px; }
.lp-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  font-size: 12px;
  flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.6);
}
.lp-footer__legal { display: flex; gap: 24px; }
.lp-footer__legal a { color: rgba(255,255,255,0.6); text-decoration: none; }
.lp-footer__legal a:hover { color: var(--cesba-green); }
@media (max-width: 900px) {
  .lp-footer__top { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

/* ---------- Sticky mobile CTA ---------- */
.lp-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(16,32,71,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(88,254,189,0.30);
  padding: 12px 16px;
  z-index: 75;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.30);
}
.lp-mobile-cta__inner {
  display: flex; gap: 12px; align-items: center;
}
.lp-mobile-cta__copy {
  flex: 1;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.3;
}
.lp-mobile-cta__copy strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.lp-mobile-cta .lp-btn { padding: 12px 20px; font-size: 12px; }
@media (max-width: 900px) {
  .lp-mobile-cta { display: block; }
  body { padding-bottom: 80px; }
  .lp-toc-fab { bottom: 96px; }
}

/* ---------- WhatsApp FAB ---------- */
.lp-whatsapp {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.30);
  text-decoration: none;
  z-index: 65;
  transition: transform .2s var(--ease-out);
}
.lp-whatsapp:hover { transform: scale(1.06); }
.lp-whatsapp svg { width: 28px; height: 28px; }
@media (max-width: 900px) {
  .lp-whatsapp { bottom: 88px; right: 16px; width: 48px; height: 48px; }
  .lp-whatsapp svg { width: 24px; height: 24px; }
}

/* ---------- Career cards (oferta educativa) ---------- */
.lp-careers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0 var(--lp-stack);
}
.lp-career {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), border-color .22s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.lp-career:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--cesba-green);
}
.lp-career::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--cesba-green);
  transform: translateX(-4px);
  transition: transform .22s var(--ease-out);
}
.lp-career:hover::before { transform: translateX(0); }
.lp-career__icon {
  width: 56px; height: 56px;
  background: var(--cesba-navy);
  color: var(--cesba-green);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.lp-career__icon svg { width: 28px; height: 28px; stroke-width: 2; }
.lp-career__body { display: flex; flex-direction: column; gap: 8px; }
.lp-career__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--cesba-navy);
  margin: 0;
  line-height: 1.2;
}
.lp-career__meta {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.lp-career__chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(88,254,189,0.18);
  color: var(--cesba-green-700);
}
.lp-career__chip--solid {
  background: var(--cesba-navy);
  color: var(--cesba-green);
}
.lp-career__desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--neutral-700);
  margin: 0;
}
.lp-career__desc strong { color: var(--cesba-navy); }
.lp-career__link {
  display: inline-flex;
  align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cesba-green-700);
  text-decoration: none;
  margin-top: 4px;
}
.lp-career__link:hover { color: var(--cesba-navy); }
.lp-career__link svg { width: 14px; height: 14px; transition: transform .22s var(--ease-out); }
.lp-career__link:hover svg { transform: translateX(3px); }
@media (max-width: 540px) {
  .lp-career { grid-template-columns: 1fr; padding: 22px; }
  .lp-career__icon { width: 44px; height: 44px; }
  .lp-career__icon svg { width: 22px; height: 22px; }
}

/* ---------- Profile (perfiles del estudiante) ---------- */
.lp-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 var(--lp-stack);
}
.lp-profile {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-profile__head {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--cesba-navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
.lp-profile__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(88,254,189,0.18);
  color: var(--cesba-green-700);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.lp-profile__icon svg { width: 20px; height: 20px; stroke-width: 2; }
.lp-profile__body {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--neutral-700);
  margin: 0;
}
.lp-profile__sol {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--cesba-navy);
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed var(--neutral-200);
}
.lp-profile__sol strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cesba-green-700);
  margin-bottom: 4px;
}
@media (max-width: 720px) { .lp-profiles { grid-template-columns: 1fr; } }

/* ---------- Method blocks (cómo estudiar) ---------- */
.lp-method {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0 var(--lp-stack);
}
.lp-method__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 18px 22px;
  align-items: start;
}
.lp-method__icon {
  width: 48px; height: 48px;
  background: var(--cesba-navy);
  color: var(--cesba-green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.lp-method__icon svg { width: 24px; height: 24px; stroke-width: 2; }
.lp-method__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--cesba-navy);
  margin: 0 0 4px;
}
.lp-method__body, .lp-method__body p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-700);
  margin: 0;
}
.lp-method__body h2 {
  font-size: 20px;
  margin: 5px 0px 25px 0;
}
.lp-method__body p {
  margin: 0px 0px 25px 0;
}
/* ---------- Pull quote ---------- */
.lp-quote {
  margin: 45px 0 60px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--cesba-navy) 0%, var(--cesba-navy-700) 100%);
  color: #fff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.lp-quote::before {
  content: "“";
  position: absolute;
  top: -24px; left: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 180px;
  color: var(--cesba-green);
  opacity: 0.30;
  line-height: 1;
  pointer-events: none;
}
.lp-quote p {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.lp-quote p .accent { color: var(--cesba-green); }

/* ---------- Reveal on scroll ---------- */
.lp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
