/* ============================================================
   EllaSuite 360 — Landing Page Styles (2026 Redesign)
   Glassmorphism + Minimalismo Profesional
   ============================================================ */

:root {
  /* Paleta EllaSuite 2026 — Carta SB7 */
  /* 1. Autoridad (60%) */
  --es-purple:     #4A008F;
  --es-indigo:     #4A008F;
  --es-fuchsia:    #A0088F;
  /* 2. Puente */
  --es-lilac:      #A056FF;
  /* 3. Acción / CTA (10%) — suave, no protagonista */
  --es-gold:       #D4AF6A;
  --es-gold-dark:  #B8965C;
  --es-gold-soft:  #E8CFA0;
  --es-rose-gold:  #C9A0A0;
  /* Olive/Sage para Pase Libertad */
  --es-olive:      #7B8F4E;
  --es-olive-mid:  #96AA60;
  --es-olive-soft: #B6C882;
  /* 4. Respiro (30%) */
  --es-cream:      #F5F5F5;
  --es-rose-soft:  #FFF0F8;
  --es-white-bone: #FDFBFF;
  --es-black:      #000000;

  /* Tipografía SB7 */
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-body:     'Montserrat', 'Poppins', sans-serif;
  --font-sans:     'Montserrat', 'Poppins', sans-serif;

  /* Glassmorphism */
  --glass-bg:      rgba(255, 255, 255, 0.12);
  --glass-border:  rgba(255, 255, 255, 0.25);
  --glass-blur:    blur(12px);
}

/* ── Typography ── */
.landing-shell h1, .landing-shell h2, .landing-shell h3 { font-family: var(--font-serif); }

/* ── Container ── */
.lp-container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.lp-section { position: relative; scroll-margin-top: 5.5rem; }

/* ── Reveal animation — el contenido sigue siendo visible (sin “huecos” en blanco al hacer scroll) ── */
.lp-reveal { opacity: 1; transform: translateY(12px); transition: opacity 0.45s ease, transform 0.45s ease; }
.lp-reveal.visible { opacity: 1; transform: translateY(0); }

/* Safety: if user prefers reduced motion, show everything immediately */
@media (prefers-reduced-motion: reduce) {
  .lp-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
/* Fallback class added by JS after timeout — guarantees no invisible content */
.lp-reveal-ready .lp-reveal { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   PRE-LOADER
   ══════════════════════════════════════ */
.lp-preloader {
  position: fixed; inset: 0; background: var(--es-cream);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.lp-preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.lp-preloader-hex {
  width: 48px; height: 48px;
  background: var(--es-purple);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  animation: hexPulse 1.2s ease-in-out infinite;
}
@keyframes hexPulse {
  0%,100% { transform: scale(1); background: var(--es-purple); }
  50%      { transform: scale(1.15); background: var(--es-lilac); }
}

/* ══════════════════════════════════════
   NAV — STICKY + BLUR
   ══════════════════════════════════════ */
.landing-nav { transition: background 0.3s, box-shadow 0.3s; }
.landing-nav.scrolled {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(250, 245, 255, 0.88) !important;
  box-shadow: 0 2px 20px rgba(124, 58, 237, 0.08);
}

/* ══════════════════════════════════════
   FLOATING BUTTON (Reina Abeja)
   ══════════════════════════════════════ */
.lp-float-btn {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  /* Anillo rosa (el relleno visible alrededor de la abeja) */
  background: linear-gradient(155deg, #fce7f3 0%, #f9a8d4 35%, #f472b6 65%, #db2777 100%);
  border: 3px solid rgba(255,255,255,.92);
  cursor: pointer;
  z-index: 999;
  box-shadow:
    0 0 0 1px rgba(219,80,165,.22),
    0 8px 24px rgba(219,80,165,.5),
    0 2px 8px rgba(0,0,0,.12);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transition: transform 0.25s, opacity 0.4s, box-shadow 0.25s;
  opacity: 0;
  pointer-events: none;
  animation: lp-bee-hover 2.8s ease-in-out infinite;
}
.lp-float-btn.visible { opacity: 1; pointer-events: auto; }
.lp-float-btn:hover {
  transform: scale(1.13) rotate(-5deg);
  box-shadow:
    0 0 0 3px rgba(255,255,255,.55),
    0 12px 32px rgba(219,80,165,.6),
    0 4px 12px rgba(0,0,0,.15);
  animation-play-state: paused;
}

/* Círculo blanco + PNG con alpha (reina-abeja-transparent.png) = abeja a color pleno */
.lp-float-bee-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
}

.lp-float-bee-img {
  width: 92%;
  height: 92%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: normal;
  display: block;
}

@keyframes lp-bee-hover {
  0%,100% { transform: translateY(0) rotate(0deg); }
  40%      { transform: translateY(-6px) rotate(4deg); }
  70%      { transform: translateY(-2px) rotate(-2deg); }
}

/* ══════════════════════════════════════
   SECTION 1: HERO — Full-Width Background
   ══════════════════════════════════════ */
.lp-hero {
  position: relative;
  overflow: hidden;
  min-height: max(680px, 80vh);
  display: flex;
  align-items: stretch;
  padding: 0;
}

/* Background image layer */
.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.lp-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.88) 28%,
    rgba(255,255,255,0.55) 44%,
    rgba(255,255,255,0.10) 58%,
    transparent 68%
  );
  z-index: 1;
}

/* Hero content on top */
.lp-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 5.5rem;
  padding-bottom: 3.5rem;
  min-height: max(680px, 80vh);
  width: 100%;
}
.lp-hero-text {
  max-width: 480px;
  min-width: 280px;
  flex-shrink: 0;
}
.lp-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #4A008F;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 8px rgba(255,255,255,0.5);
}
.lp-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 500;
  color: #1a1a2e;
  max-width: 480px;
  margin: 0 0 2rem;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.7);
}

/* Rotador de nichos en el Hero */
.lp-hero-nicho {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 600;
  color: #4A008F;
  margin: -0.5rem 0 1.25rem;
  text-shadow: 0 1px 8px rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3em;
}
.lp-hero-nicho-rotador {
  display: inline-block;
  position: relative;
  height: 1.4em;
  overflow: hidden;
  vertical-align: bottom;
  min-width: 200px;
}
.lp-hero-nicho-item {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  color: #A0088F;
  font-weight: 800;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
.lp-hero-nicho-item--active {
  opacity: 1;
  transform: translateY(0);
}
.lp-br-desktop { display: none; }
@media (min-width: 768px) { .lp-br-desktop { display: inline; } }

/* CTA Hero button — gold accent per brand guide */
.btn-es-cta-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--es-purple) 0%, var(--es-fuchsia) 100%);
  color: #fff;
  padding: 0.85rem 2.4rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 4px 24px rgba(74,0,143,0.3);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.btn-es-cta-hero:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--es-purple) 0%, #C040C0 100%);
  box-shadow: 0 8px 32px rgba(74,0,143,0.45);
  color: #fff;
}

/* Hero KPI floating cards — desktop: columna a la derecha para no tapar el sujeto en la foto */
.lp-hero-kpis {
  position: relative;
  right: auto;
  top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 3;
  flex: 0 0 auto;
  justify-content: center;
  align-items: stretch;
  width: min(220px, 32vw);
  max-width: 220px;
  margin-top: 0;
  margin-left: auto;
  align-self: center;
}
.lp-hero-kpi {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 1rem 1.1rem 0.85rem;
  min-width: 155px;
  box-shadow:
    0 8px 28px rgba(74,0,143,0.10),
    0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.lp-hero-kpi:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 36px rgba(74,0,143,0.14),
    0 4px 12px rgba(0,0,0,0.08);
}
.lp-hero-kpi-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}
.lp-hero-kpi-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.lp-hero-kpi-icon--purple { background: #EDE9FE; color: var(--es-purple); }
.lp-hero-kpi-icon--green  { background: #D1FAE5; color: #059669; }
.lp-hero-kpi-icon--teal   { background: #CCFBF1; color: #0D9488; }
.lp-hero-kpi-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--es-purple);
  white-space: nowrap;
}
.lp-hero-kpi-value {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.lp-hero-kpi-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: #666;
  font-style: italic;
  line-height: 1.3;
}

@media (min-width: 901px) {
  .lp-hero-kpis .lp-hero-kpi-title {
    white-space: normal;
    line-height: 1.25;
  }
}

@media (max-width: 1100px) {
  .lp-hero-content {
    gap: 1.5rem;
  }
  .lp-hero-kpis {
    width: min(200px, 36vw);
    max-width: 200px;
  }
  .lp-hero-kpi {
    min-width: 0;
    padding: 0.75rem 0.85rem 0.65rem;
  }
  .lp-hero-kpi-value { font-size: 1.1rem; }
}
@media (max-width: 900px) {
  .lp-hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 7rem;
    gap: 2rem;
  }
  .lp-hero-text {
    max-width: 100%;
  }
  .lp-hero-kpis {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 520px;
    margin-left: 0;
    align-self: center;
    justify-content: center;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }
  .lp-hero-kpi {
    min-width: 130px;
    flex: 1 1 140px;
  }
  .lp-hero-kpis .lp-hero-kpi-title {
    white-space: normal;
    line-height: 1.25;
  }
}
@media (max-width: 767px) {
  .lp-hero-content {
    padding-top: 6rem;
  }
  .lp-hero-kpi {
    min-width: 0;
    padding: 0.65rem 0.75rem 0.6rem;
  }
  .lp-hero-kpi-value { font-size: 1rem; }
  .lp-hero-kpi-title {
    font-size: 0.63rem;
    white-space: normal;
    line-height: 1.25;
  }
  .lp-hero-kpi-label { font-size: 0.58rem; }
  .lp-hero-kpi-icon  { width: 20px; height: 20px; font-size: 0.58rem; }
}
@media (max-width: 480px) {
  .lp-hero-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    flex-wrap: unset;
  }
  .lp-hero-kpi {
    flex: unset;
    min-width: 0;
    width: 100%;
  }
  .lp-hero-kpi:nth-child(3) {
    grid-column: 1 / -1;
  }
  .lp-hero-kpi-value { font-size: 1.05rem; }
  .lp-hero-kpi-title {
    font-size: 0.62rem;
    white-space: normal;
    line-height: 1.2;
  }
  .lp-hero-kpi-label { font-size: 0.58rem; }
}

/* Generic CTA */
.btn-es-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--es-purple) 0%, var(--es-fuchsia) 100%);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(74,0,143,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-es-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,0,143,0.45);
  color: #fff;
}


/* ══════════════════════════════════════
   SECTION 2: EL ESPEJO
   ══════════════════════════════════════ */
.lp-espejo { background: #fff; padding: 5rem 1.5rem; }
.lp-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--es-lilac);
  display: block;
  margin-bottom: 0.75rem;
}

/* Header */
.lp-espejo-header { text-align: center; margin-bottom: 2.5rem; }
.lp-espejo-titulo {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #4A008F;
  line-height: 1.2;
  margin: 0;
}

/* Cards grid */
.lp-espejo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.lp-espejo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lp-espejo-card-img {
  background: #fff;
  border-radius: 18px;
  padding: 8px;
  box-shadow:
    0 8px 32px rgba(74,0,143,0.1),
    0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.lp-espejo-card:hover .lp-espejo-card-img {
  transform: translateY(-4px);
  box-shadow:
    0 14px 40px rgba(74,0,143,0.14),
    0 4px 12px rgba(0,0,0,0.08);
}
.lp-espejo-card-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.lp-espejo-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--es-fuchsia);
  display: block;
  margin-bottom: 0.25rem;
}
.lp-espejo-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #4A008F;
  line-height: 1.3;
  margin: 0;
}

/* Fórmula box */
.lp-espejo-formula { margin-bottom: 2rem; }
.lp-formula-box {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 2.25rem 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 6px 28px rgba(74,0,143,0.08);
}
.lp-formula-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #4A008F;
  margin: 0 0 1.5rem;
}
.lp-formula-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.lp-formula-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.lp-formula-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.lp-formula-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(74,0,143,0.12));
}
.lp-formula-name {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
}
.lp-formula-big {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--es-indigo);
  line-height: 1;
}
.lp-formula-op {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--es-purple);
}
.lp-formula-arrow {
  font-size: 1.5rem;
  color: var(--es-fuchsia);
}
.lp-formula-tagline {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--es-lilac);
  font-style: italic;
  margin: 1.25rem 0 0;
}

/* CTA */
.lp-espejo-cta { text-align: center; }

/* ══════════════════════════════════════
   SECTION 3: LA RUTA DE LA CLARIDAD
   ══════════════════════════════════════ */
.lp-ruta {
  background:
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(200,180,230,0.15) 0%, transparent 60%),
    linear-gradient(180deg, #FAF8FE 0%, #F4EFF9 40%, #EEE7F5 70%, #F5F0FA 100%);
  padding: 5rem 1.5rem 4rem;
}
.lp-section-header { text-align: center; margin-bottom: 2.5rem; }
.lp-section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #4A008F;
  margin-bottom: 0.75rem;
}
.lp-section-header p { font-family: 'Montserrat', sans-serif; color: #000000; font-size: 1rem; line-height: 1.7; }

/* Header */
.lp-ruta-header { text-align: center; margin-bottom: 2.5rem; }
.lp-ruta-titulo {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #4A008F;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
}
.lp-ruta-divider {
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, var(--es-indigo), var(--es-fuchsia), var(--es-lilac));
  margin: 0 auto;
  border-radius: 2px;
}

/* Steps grid */
.lp-ruta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-bottom: 2.5rem;
  padding: 1rem 0;
}

/* Decorative SVG curve */
.lp-ruta-curve {
  position: absolute;
  top: 55%;
  left: 2%;
  right: 2%;
  width: 96%;
  height: 120px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.lp-ruta-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.lp-ruta-step-title {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}
.lp-ruta-step-title--indigo  { color: var(--es-indigo); }
.lp-ruta-step-title--fuchsia { color: var(--es-fuchsia); }
.lp-ruta-step-title--lime    { color: var(--es-fuchsia); }

.lp-ruta-step-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #000000;
  line-height: 1.7;
  margin: 0 0 1.25rem;
  max-width: 260px;
}
.lp-ruta-step-desc em {
  color: var(--es-fuchsia);
  font-style: italic;
  font-weight: 600;
}

/* Circular images */
.lp-ruta-circle {
  width: clamp(200px, 24vw, 280px);
  height: clamp(200px, 24vw, 280px);
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid;
  box-shadow:
    0 12px 40px rgba(74, 0, 143, 0.14),
    0 4px 12px rgba(0,0,0,0.06);
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.lp-ruta-circle:hover {
  transform: scale(1.03);
  box-shadow:
    0 16px 48px rgba(74, 0, 143, 0.18),
    0 6px 16px rgba(0,0,0,0.08);
}
.lp-ruta-circle--indigo  { border-color: var(--es-indigo); }
.lp-ruta-circle--fuchsia { border-color: var(--es-fuchsia); }
.lp-ruta-circle--lime    { border-color: var(--es-lilac); }

.lp-ruta-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA */
.lp-ruta-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.lp-ruta-trust {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #888;
  margin: 0.25rem 0 0;
}

/* CTA secundario (outline) — para "Ya quiero el plan de pago" */
.btn-es-cta-secondary {
  display: inline-block;
  background: transparent;
  color: #A0088F;
  padding: 0.7rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid #A0088F;
  transition: background 0.22s, color 0.22s, transform 0.22s;
}
.btn-es-cta-secondary:hover {
  background: #A0088F;
  color: #fff;
  transform: translateY(-2px);
}

/* Contexto de valor bajo el precio */
.lp-pase-precio-contexto {
  font-size: 0.82rem;
  color: #555;
  text-align: center;
  margin: 0.5rem 0 1rem;
  line-height: 1.5;
}
.lp-pase-precio-contexto strong {
  color: #A0088F;
}
.lp-section-cta { text-align: center; margin-top: 3rem; }

/* ══════════════════════════════════════
   SECTION 4: INGENIERÍA FINANCIERA
   ══════════════════════════════════════ */
.lp-ingenieria {
  background:
    radial-gradient(ellipse 90% 70% at 50% 55%, rgba(190,170,230,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(220,200,255,0.25) 0%, transparent 50%),
    linear-gradient(180deg,
      #F0EAF8 0%,
      #E8E0F4 20%,
      #DED4EE 40%,
      #DDD2ED 55%,
      #E2D8F0 70%,
      #EBE4F6 85%,
      #F2EDF9 100%
    );
  padding: 5rem 1.5rem 4.5rem;
  color: #1a1a2e;
  overflow-x: visible;
  overflow-y: visible;
  position: relative;
}
.lp-ingenieria::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(180,160,220,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Header */
.lp-ingenieria-header { text-align: center; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.lp-ingenieria-titulo {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #4A008F;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.lp-ingenieria-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  max-width: 580px;
  margin: 0 auto;
}

/* Device stage */
.lp-ingenieria-stage {
  position: relative;
  margin: 2rem 0 2.5rem;
  padding: 2rem 0 2.5rem;
  z-index: 1;
}
.lp-ingenieria-stage::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 30%;
  background: radial-gradient(ellipse at center bottom, rgba(74,0,143,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Desk props */
.lp-desk-props {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: min(820px, 96%);
  display: flex;
  justify-content: space-between;
  padding: 0 2%;
  pointer-events: none;
  z-index: 2;
}
.lp-desk-prop {
  font-size: 2.2rem;
  opacity: 0.85;
  filter: drop-shadow(0 8px 20px rgba(74,0,143,0.15));
}
.lp-desk-prop--coffee { transform: translateY(-18px); }
.lp-desk-prop--agenda { transform: translateY(-10px); }

.lp-device-cluster {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(0.45rem, 1.6vw, 1.15rem);
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.lp-device {
  border-radius: 12px;
  box-shadow:
    0 24px 64px rgba(74,0,143,0.20),
    0 8px 24px rgba(0,0,0,0.10),
    0 2px 6px rgba(74,0,143,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.lp-device:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 72px rgba(74,0,143,0.24),
    0 12px 32px rgba(0,0,0,0.12),
    0 2px 6px rgba(74,0,143,0.1);
}
.lp-device--laptop { max-width: min(520px, 100%); width: 100%; }
.lp-device--phone  { max-width: 126px; width: clamp(90px, 10vw, 126px); border-radius: 18px; }
.lp-mockup-tablet {
  flex-shrink: 0;
  filter: drop-shadow(0 20px 48px rgba(74,0,143,0.20));
  transition: transform 0.3s;
}
.lp-mockup-tablet:hover { transform: translateY(-4px); }
.lp-mockup-tablet-frame {
  width: min(175px, 16vw);
  min-width: 92px;
  aspect-ratio: 3/4;
  background: #1a1a2e;
  border-radius: 16px;
  padding: 8px;
  border: 3px solid #2d2d44;
  overflow: hidden;
}
.lp-device-tablet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  display: block;
}

/* ── Device Carousel ── */
.lp-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.lp-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  border-radius: inherit;
}
.lp-carousel-slide.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}
.lp-device--laptop .lp-carousel {
  aspect-ratio: 520/292;
}
.lp-device--laptop .lp-carousel-slide {
  border-radius: 12px;
}
.lp-device--phone .lp-carousel {
  aspect-ratio: 120/260;
}
.lp-device--phone .lp-carousel-slide {
  border-radius: 18px;
}
.lp-mockup-tablet-frame .lp-carousel {
  border-radius: 8px;
}
.lp-mockup-tablet-frame .lp-carousel-slide {
  border-radius: 8px;
}

/* ── Ingeniería: carrusel simple con imágenes que incluyen marco de dispositivo ── */
#lpIngenieriaCaptionsJson {
  display: none !important;
}

.lp-ing-views {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  min-height: clamp(280px, 48vh, 520px);
  /* Las capturas no deben captar clics: si no, la sombra/overflow tapa flechas y puntos */
  pointer-events: none;
}
.lp-ing-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s, transform 0.55s ease;
  z-index: 0;
  pointer-events: none;
  transform: scale(0.96);
}
.lp-ing-view.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: none;
  transform: scale(1);
}

/* Imagen de dispositivo con sombra premium */
.lp-ing-device-img {
  max-width: 100%;
  max-height: clamp(260px, 46vh, 480px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 18px 48px rgba(74, 0, 143, 0.22));
  transition: transform 0.35s ease, filter 0.35s ease;
  pointer-events: none;
}
.lp-ing-view.active:hover .lp-ing-device-img {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0 26px 62px rgba(74, 0, 143, 0.28));
}

@media (max-width: 540px) {
  .lp-ing-views {
    min-height: clamp(240px, 52vw, 380px);
  }
  .lp-ing-device-img {
    max-height: clamp(220px, 48vw, 340px);
  }
}
.lp-ing-showcase-caption {
  text-align: center;
  max-width: 38rem;
  margin: 1.35rem auto 0.5rem;
  padding: 0 0.75rem;
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 2.2vw, 1rem);
  line-height: 1.55;
  color: #3d2d5c;
  min-height: 2.85em;
  opacity: 1;
  transition: opacity 0.28s ease;
  position: relative;
  z-index: 10;
}
.lp-ing-showcase-caption.is-fading {
  opacity: 0;
}
.lp-ing-showcase-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.35rem;
  padding-bottom: 0.25rem;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
.lp-ing-car-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: #4a008f;
  background: linear-gradient(145deg, #fff 0%, #f3ecfc 100%);
  box-shadow:
    0 2px 10px rgba(74, 0, 143, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.lp-ing-car-btn:hover {
  transform: scale(1.08);
  box-shadow:
    0 6px 20px rgba(124, 58, 237, 0.2),
    0 2px 6px rgba(74, 0, 143, 0.12);
}
.lp-ing-car-btn:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 3px;
}
.lp-ing-car-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 4px 18px rgba(74, 0, 143, 0.08);
  backdrop-filter: blur(8px);
}
.lp-ing-car-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(74, 0, 143, 0.22);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.lp-ing-car-dot:hover {
  background: rgba(74, 0, 143, 0.38);
  transform: scale(1.15);
}
.lp-ing-car-dot.active {
  background: linear-gradient(135deg, #6d28d9 0%, #4a008f 100%);
  transform: scale(1.35);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25);
}
.lp-ing-car-dot:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}
@keyframes lpIngClusterPulse {
  0% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-3px) scale(1.008);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.lp-ing-views.lp-ing-pulse {
  animation: lpIngClusterPulse 0.7s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}
.lp-ingenieria-showcase:focus {
  outline: none;
}
.lp-ingenieria-showcase:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.55);
  outline-offset: 6px;
  border-radius: 12px;
}

/* Badges with separator */
.lp-ingenieria-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.lp-ing-badge {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--es-indigo);
  letter-spacing: 0.01em;
}
.lp-ing-separator {
  width: 2px;
  height: 36px;
  background: var(--es-lilac);
  flex-shrink: 0;
  opacity: 0.5;
}

/* Sellos hex (imagen) entre badges y tarjetas de texto */
.lp-ing-seals-wrap {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 1100px;
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem 2.5rem;
  background: linear-gradient(135deg, rgba(74,0,143,0.07) 0%, rgba(160,8,143,0.06) 100%);
  border-radius: 24px;
  border: 1px solid rgba(160, 86, 255, 0.15);
  box-shadow: 0 8px 40px rgba(74, 0, 143, 0.08);
}
.lp-ing-seals-kicker {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #4A008F 0%, #A0088F 60%, #A056FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 0.25rem 0 0.5rem;
}
.lp-ing-trust-seals {
  list-style: none;
  padding: 0;
  margin: 1.25rem auto 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}
.lp-ing-seal-item {
  margin: 0;
  flex: 0 0 auto;
  position: relative;
}
.lp-ing-seal-item::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(160,8,143,0.22) 0%, transparent 70%);
  filter: blur(3px);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lp-ing-seal-item img {
  display: block;
  height: auto;
  width: auto;
  max-height: clamp(80px, 9vw, 115px);
  object-fit: contain;
  filter:
    drop-shadow(0 4px 12px rgba(74, 0, 143, 0.30))
    drop-shadow(0 1px 4px rgba(160, 8, 143, 0.20));
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), filter 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .lp-ing-seal-item:hover::after {
    opacity: 1.5;
  }
  .lp-ing-seal-item img:hover {
    transform: translateY(-7px) scale(1.08);
    filter:
      drop-shadow(0 14px 28px rgba(74, 0, 143, 0.38))
      drop-shadow(0 3px 8px rgba(160, 8, 143, 0.28))
      brightness(1.05);
  }
}
@media (max-width: 520px) {
  .lp-ing-trust-seals {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }
  .lp-ing-seal-item img {
    max-height: 75px;
  }
}

/* ══════════════════════════════════════
   SECTION 5: PASAPORTES
   ══════════════════════════════════════ */
.lp-pasaportes {
  background:
    radial-gradient(ellipse 110% 50% at 50% 0%, rgba(200,180,230,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #F5F0FA 0%, #EDE5F6 40%, #E8E0F2 70%, #EAE2F4 100%);
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.lp-pasaportes-plane {
  position: absolute;
  top: 2.5rem;
  right: 5%;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--es-indigo);
  opacity: 0.08;
  transform: rotate(-15deg);
  pointer-events: none;
}

/* Header */
.lp-pasaportes-header { text-align: center; margin-bottom: 2.5rem; }
.lp-pasaportes-titulo {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #4A008F;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}
.lp-pasaportes-titulo em {
  font-style: italic;
  color: #4A008F;
}
.lp-pasaportes-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #444;
  font-style: italic;
  margin: 0;
}

/* Plan cards grid */
.lp-planes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* Pase card (boarding pass style) */
.lp-pase {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 8px 32px rgba(74,0,143,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.lp-pase:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(74,0,143,0.15);
}

/* Pase header bar */
.lp-pase-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  color: #fff;
}
.lp-pase-header--pionera {
  background: linear-gradient(135deg, var(--es-indigo) 0%, var(--es-fuchsia) 100%);
}
.lp-pase-header--libertad {
  background: linear-gradient(135deg, var(--es-olive) 0%, var(--es-olive-mid) 50%, var(--es-olive-soft) 100%);
  color: #fff;
}
.lp-pase-icon {
  font-size: 0.95rem;
  opacity: 0.9;
}
.lp-pase-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.lp-pase-name strong {
  font-weight: 700;
}

/* Motto band */
.lp-pase-motto {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: italic;
  padding: 0.5rem 1rem;
  border-top: 2px dashed rgba(0,0,0,0.08);
}
.lp-pase-motto--pionera {
  color: var(--es-fuchsia);
  background: linear-gradient(180deg, rgba(160,8,143,0.04) 0%, transparent 100%);
}
.lp-pase-motto--libertad {
  color: var(--es-olive);
  background: linear-gradient(180deg, rgba(123,143,78,0.06) 0%, transparent 100%);
}

/* Body */
.lp-pase-body {
  padding: 1.5rem 1.75rem 2rem;
}
.lp-pase-price {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--es-indigo);
  text-align: center;
  margin-bottom: 0.5rem;
}
.lp-pase-price strong {
  font-weight: 900;
}

/* Bloque de precio promocional */
.lp-pase-precio-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: rgba(160, 8, 143, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(160, 8, 143, 0.15);
}
.lp-pase-precio-tachado {
  font-size: 0.8rem;
  color: #999;
}
.lp-pase-precio-tachado s {
  color: #bbb;
}
.lp-pase-precio-promo {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 900;
  color: #A0088F;
  line-height: 1.1;
}
.lp-pase-precio-mes {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--es-text-muted, #888);
}
.lp-pase-precio-ahorro {
  font-size: 0.75rem;
  font-weight: 700;
  color: #A0088F;
  letter-spacing: 0.01em;
}

/* Feature row */
.lp-pase-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.lp-pase-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #fff;
  margin-top: 2px;
}
.lp-pase-check--pionera { background: var(--es-fuchsia); }
.lp-pase-check--libertad { background: var(--es-olive-mid); color: #fff; }

.lp-pase-feature strong {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--es-indigo);
}
.lp-pase-feature span {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--es-black);
  line-height: 1.5;
}

/* Limit info box */
.lp-pase-limit {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(74,0,143,0.04);
  border: 1px dashed rgba(74,0,143,0.15);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: #666;
  line-height: 1.5;
}
.lp-pase-limit i {
  color: var(--es-lilac);
  margin-top: 2px;
  flex-shrink: 0;
}
.lp-pase-limit strong {
  color: var(--es-indigo);
}

/* Cierre */
.lp-pase-cierre {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--es-black);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.lp-pase-cierre em {
  color: var(--es-fuchsia);
  font-weight: 600;
}
.lp-pase-cierre strong {
  color: var(--es-indigo);
  font-style: normal;
}

/* CTA buttons */
.lp-pase-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-pase-btn--pionera {
  background: linear-gradient(135deg, var(--es-indigo) 0%, var(--es-fuchsia) 100%);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(160,8,143,0.3);
}
.lp-pase-btn--pionera:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160,8,143,0.4);
  color: #fff;
}
.lp-pase-btn--libertad {
  background: linear-gradient(135deg, var(--es-olive) 0%, var(--es-olive-mid) 60%, var(--es-olive-soft) 100%);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(123,143,78,0.35);
}
.lp-pase-btn--libertad:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,143,78,0.45);
  color: #fff;
}

/* Compare table */
.lp-compare-wrap { margin: 0 auto 2rem; max-width: 800px; }
.lp-compare-table-scroll {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(124,58,237,0.12);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lp-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--es-black);
}
.lp-compare-table th,
.lp-compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(124,58,237,0.08);
}
.lp-compare-table th {
  background: rgba(237, 233, 254, 0.9);
  color: var(--es-indigo);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lp-compare-table tbody tr:last-child td { border-bottom: none; }
.lp-compare-table td:not(:first-child) { text-align: center; white-space: nowrap; }
.lp-compare-highlight td { background: rgba(74,0,143,0.03); font-weight: 600; }
.lp-compare-highlight td:not(:first-child) { color: var(--es-indigo); }
.lp-check { color: var(--es-purple); font-weight: 800; font-size: 1rem; }

/* Garantía */
.lp-garantia {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--es-black);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(74,0,143,0.06);
}
.lp-garantia-icon {
  font-size: 1.8rem;
  color: var(--es-purple);
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-garantia p { margin: 0; }

/* ══════════════════════════════════════
   SECTION 6: BLOG
   ══════════════════════════════════════ */
.lp-blog { background: #fff; padding: 5rem 1.5rem; }
.lp-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.lp-blog-card {
  background: var(--es-cream);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s;
}
.lp-blog-card:hover { transform: translateY(-3px); }
.lp-blog-cat {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  width: fit-content;
}
.lp-cat--purple  { background: #EDE9FE; color: var(--es-purple); }
.lp-cat--fuchsia { background: #FCE7F3; color: var(--es-fuchsia); }
.lp-cat--lime    { background: linear-gradient(135deg, #FEF9C3 0%, #FDE68A 100%); color: #92700C; }
.lp-cat--gold    { background: linear-gradient(135deg, #F3E8D8 0%, #E8D5B8 100%); color: #6B4F2E; }
.lp-cat--soon    { background: #ddd; color: #666; }
.lp-blog-card h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--es-indigo); line-height: 1.4; margin: 0; }
.lp-blog-card p  { font-family: var(--font-sans); font-size: 0.9rem; color: #444; line-height: 1.65; flex: 1; margin: 0; }
.lp-blog-card-top { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.lp-blog-card-bottom { margin-top: auto; padding-top: 0.75rem; border-top: 1px solid rgba(124,58,237,0.06); display: flex; flex-direction: column; gap: 0.5rem; }
.lp-blog-soon {
  color: #aaa !important;
  font-style: italic;
  cursor: default;
}
.lp-blog-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--es-lilac);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.lp-blog-link:hover { color: var(--es-indigo); }
.lp-btn-ghost {
  font-family: var(--font-sans);
  color: var(--es-indigo);
  border: 2px solid var(--es-indigo);
  padding: 0.7rem 1.8rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.lp-btn-ghost:hover { background: var(--es-indigo); color: #fff; }
.lp-btn-ghost--disabled { opacity: 0.5; pointer-events: none; cursor: default; }

/* ══════════════════════════════════════
   SECTION 7: FAQ
   ══════════════════════════════════════ */
.lp-faq { background: var(--es-cream); padding: 5rem 1.5rem; }
.lp-container--narrow { max-width: 720px; margin: 0 auto; }
.lp-faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.lp-faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  border: 1px solid rgba(124,58,237,0.12);
  overflow: hidden;
}
.lp-faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--es-indigo);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item[open] summary { background: var(--es-cream); }
.lp-faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════
   MANIFIESTO POPUP
   ══════════════════════════════════════ */
.lp-manifiesto-overlay {
  position: fixed; inset: 0; background: rgba(74,32,128,0.7);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  padding: 1rem; backdrop-filter: blur(4px);
}
.lp-manifiesto-overlay[hidden] { display: none; }
.lp-manifiesto-modal {
  background: linear-gradient(180deg, #FAF5FF 0%, #F3EDFC 50%, #F8F4FF 100%);
  border: 2px solid rgba(160,86,255,0.18);
  border-radius: 24px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 3.5rem 3rem;
  box-shadow:
    0 24px 64px rgba(74,0,143,0.18),
    0 4px 16px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.6);
}
.lp-manifiesto-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 18rem; color: rgba(124,58,237,0.04); pointer-events: none;
  font-family: monospace; user-select: none;
}
.lp-manifiesto-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: #999;
}
.lp-manifiesto-crown { text-align: center; display: block; margin-bottom: 0.75rem; }
.lp-manifiesto-title { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: #4A008F; text-align: center; margin-bottom: 0.5rem; }
.lp-manifiesto-subtitle { font-family: var(--font-serif); font-style: italic; text-align: center; color: #666; margin-bottom: 2rem; font-size: 1.05rem; }
.lp-manifiesto-intro {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.lp-manifiesto-intro strong { color: var(--es-indigo); }
.lp-manifiesto-divider {
  text-align: center;
  margin: 0 0 1.75rem;
  position: relative;
}
.lp-manifiesto-divider::before,
.lp-manifiesto-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,86,255,0.3), transparent);
}
.lp-manifiesto-divider::before { right: calc(50% + 160px); }
.lp-manifiesto-divider::after  { left:  calc(50% + 160px); }
.lp-manifiesto-divider span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--es-indigo);
  font-style: italic;
}
.lp-manifiesto-body { font-family: var(--font-sans); color: #444; line-height: 1.8; font-size: 0.95rem; }
.lp-manifiesto-verdades { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; margin: 0 0 2rem; }
.lp-manifiesto-verdades li { display: flex; gap: 0.85rem; align-items: flex-start; line-height: 1.75; }
.lp-manifiesto-verdades li strong { color: var(--es-indigo); }
.lp-hex-icon { color: var(--es-purple); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.lp-manifiesto-sellos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.lp-manifiesto-sello { background: #EDE9FE; border-radius: 12px; padding: 1.25rem; text-align: center; }
.lp-sello-ico { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.lp-manifiesto-sello h4 { font-family: var(--font-serif); color: var(--es-indigo); margin-bottom: 0.5rem; font-size: 0.95rem; }
.lp-manifiesto-sello p { font-size: 0.85rem; color: #555; }
.lp-manifiesto-sentencia {
  font-family: var(--font-serif); font-size: 1.15rem; color: var(--es-purple);
  text-align: center; border-left: none; padding: 0;
  margin: 1.5rem 0; font-style: italic; line-height: 1.6;
}
.lp-manifiesto-firma { text-align: center; color: #555; margin-top: 0; margin-bottom: 0.25rem; }
.lp-manifiesto-firma--script {
  font-family: 'Brush Script MT', 'Segoe Script', 'Apple Chancery', cursive;
  font-size: 1.35rem;
  font-style: normal;
  color: var(--es-indigo);
}
.lp-manifiesto-tag {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--es-fuchsia);
  font-weight: 600;
  margin-top: 0.5rem;
}
.lp-manifiesto-accept { margin: 1.5rem auto 0; display: block; }

/* ══════════════════════════════════════
   MANIFIESTO — FULL SECTION
   ══════════════════════════════════════ */
.lp-manifiesto-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,180,240,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 60%, rgba(220,200,255,0.20) 0%, transparent 50%),
    linear-gradient(180deg,
      #F2ECF9 0%,
      #EAE2F6 20%,
      #E4DAF2 40%,
      #E0D4EF 55%,
      #E4DAF2 70%,
      #ECE5F8 85%,
      #F4EFF9 100%
    );
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.lp-manifiesto-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,215,0,0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,215,0,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.lp-manifiesto-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.55) 0%,
    rgba(250,245,255,0.50) 30%,
    rgba(245,240,252,0.45) 60%,
    rgba(255,255,255,0.50) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(160,86,255,0.18);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow:
    0 16px 48px rgba(74,0,143,0.10),
    0 4px 16px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Decorative corner ornaments */
.lp-manifiesto-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(160,86,255,0.25);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
}
.lp-manifiesto-corner--tl { top: 16px; left: 16px; border-top-width: 2px; border-left-width: 2px; border-radius: 8px 0 0 0; }
.lp-manifiesto-corner--tr { top: 16px; right: 16px; border-top-width: 2px; border-right-width: 2px; border-radius: 0 8px 0 0; }
.lp-manifiesto-corner--bl { bottom: 16px; left: 16px; border-bottom-width: 2px; border-left-width: 2px; border-radius: 0 0 0 8px; }
.lp-manifiesto-corner--br { bottom: 16px; right: 16px; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 8px 0; }

.lp-manifiesto-inner {
  position: relative;
  z-index: 1;
}

/* Section-specific overrides */
.lp-manifiesto-section .lp-manifiesto-crown { text-align: center; display: block; margin-bottom: 0.75rem; }
.lp-reina-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(74,0,143,0.15));
  transition: transform 0.3s;
}
.lp-reina-img:hover { transform: scale(1.05) rotate(-3deg); }
.lp-manifiesto-section .lp-manifiesto-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #4A008F;
  text-align: center;
  margin-bottom: 0.5rem;
}
.lp-manifiesto-section .lp-manifiesto-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.lp-manifiesto-intro {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.lp-manifiesto-intro strong { color: var(--es-indigo); }

.lp-manifiesto-divider {
  text-align: center;
  margin: 0 0 1.75rem;
  position: relative;
}
.lp-manifiesto-divider::before,
.lp-manifiesto-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,86,255,0.3), transparent);
}
.lp-manifiesto-divider::before { right: calc(50% + 160px); }
.lp-manifiesto-divider::after  { left:  calc(50% + 160px); }
.lp-manifiesto-divider span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--es-indigo);
  font-style: italic;
}

.lp-manifiesto-section .lp-manifiesto-verdades {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0 0 2.5rem;
}
.lp-manifiesto-section .lp-manifiesto-verdades li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
}
.lp-manifiesto-section .lp-manifiesto-verdades li strong { color: var(--es-indigo); }
.lp-manifiesto-section .lp-hex-icon {
  color: var(--es-lilac);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.lp-manifiesto-section .lp-manifiesto-sellos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 0 0 2rem;
}
.lp-manifiesto-section .lp-manifiesto-sello {
  background: rgba(237,233,254,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(160,86,255,0.12);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.lp-manifiesto-section .lp-sello-ico { font-size: 1.6rem; display: block; margin-bottom: 0.6rem; }
.lp-sello-ico-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.6rem;
  filter: drop-shadow(0 2px 8px rgba(74,0,143,0.12));
}
.lp-manifiesto-section .lp-manifiesto-sello h4 {
  font-family: var(--font-serif);
  color: var(--es-indigo);
  margin-bottom: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
}
.lp-manifiesto-section .lp-manifiesto-sello p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.lp-manifiesto-section .lp-manifiesto-sentencia {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--es-purple);
  text-align: center;
  border-left: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.lp-manifiesto-section .lp-manifiesto-firma {
  text-align: center;
  color: #555;
  margin-top: 0;
  margin-bottom: 0.25rem;
}
.lp-manifiesto-section .lp-manifiesto-firma--script {
  font-family: 'Brush Script MT', 'Segoe Script', 'Apple Chancery', cursive;
  font-size: 1.35rem;
  font-style: normal;
  color: var(--es-indigo);
}
.lp-manifiesto-section .lp-manifiesto-tag {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--es-fuchsia);
  font-weight: 600;
  margin-top: 0.25rem;
}

@media (max-width: 640px) {
  .lp-manifiesto-card { padding: 2.5rem 1.5rem; }
  .lp-manifiesto-section .lp-manifiesto-sellos { grid-template-columns: 1fr; }
  .lp-manifiesto-divider::before,
  .lp-manifiesto-divider::after { display: none; }
  .lp-manifiesto-corner { width: 28px; height: 28px; }
}

/* ══════════════════════════════════════
   TESTIMONIOS
   ══════════════════════════════════════ */
.lp-testimonios {
  background: linear-gradient(180deg, #fff 0%, #FAFAFE 40%, var(--es-cream) 100%);
  padding: 5rem 1.5rem 4rem;
}
.lp-testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.lp-testimonio {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(74, 0, 143, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 16px rgba(74, 0, 143, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.lp-testimonio:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(74, 0, 143, 0.1);
}
.lp-testimonio-stars {
  color: var(--es-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  opacity: 0.85;
}
.lp-testimonio-quote {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--es-black);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
  flex: 1;
}
.lp-testimonio-quote strong {
  color: var(--es-indigo);
  font-style: normal;
}
.lp-testimonio-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.lp-testimonio-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--es-indigo), var(--es-lilac));
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-testimonio-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--es-indigo);
  margin: 0;
}
.lp-testimonio-role {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

/* ══════════════════════════════════════
   WHATSAPP BUTTON
   ══════════════════════════════════════ */
.lp-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  left: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.lp-footer {
  background: linear-gradient(180deg, var(--es-cream) 0%, #fff 100%);
  color: #444;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  padding: 3.5rem 1.5rem 1.5rem;
}
.lp-footer-inner { max-width: 1140px; margin: 0 auto; }
.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.lp-footer-brand .brand-link { margin-bottom: 0.15rem; }
.lp-footer-tagline {
  font-family: var(--font-sans); font-size: 0.9rem; color: #666;
  line-height: 1.65; margin-top: 0.75rem; max-width: 320px; font-style: italic;
}
.lp-footer-community {
  font-family: var(--font-sans); font-size: 0.85rem;
  color: var(--es-purple); margin-top: 1rem;
}
.lp-footer-community i { margin-right: 0.4rem; }
.lp-footer h4 {
  font-family: var(--font-sans); color: var(--es-indigo);
  font-size: 0.8rem; font-weight: 700; margin-bottom: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.lp-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.lp-footer-links a { color: #666; font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.lp-footer-links a:hover { color: var(--es-fuchsia); }
.lp-footer-social { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.lp-footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; border: 1px solid rgba(124,58,237,0.15);
  color: var(--es-indigo); display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.lp-footer-social a:hover {
  background: var(--es-cream); border-color: var(--es-fuchsia); color: var(--es-fuchsia);
}
.lp-footer-cta { text-align: center; margin-bottom: 2.5rem; }
.lp-footer-microcopy {
  font-family: var(--font-sans); font-size: 0.85rem;
  color: #888; margin-top: 0.75rem; font-style: italic;
}
.lp-footer-bottom {
  border-top: 1px solid rgba(124,58,237,0.08);
  padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
}
.lp-footer-bottom p { font-size: 0.8rem; color: #999; }
.lp-footer-bottom-links { display: flex; gap: 1.25rem; }
.lp-footer-bottom-links a { font-size: 0.8rem; color: #999; text-decoration: none; transition: color 0.2s; }
.lp-footer-bottom-links a:hover { color: var(--es-fuchsia); }

/* ══════════════════════════════════════
   HAMBURGER / MOBILE MENU
   ══════════════════════════════════════ */
.lp-hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: none; border: none;
  cursor: pointer; color: var(--es-indigo); font-size: 1.3rem;
  border-radius: 8px; transition: background 0.2s;
}
.lp-hamburger:hover { background: var(--es-cream); }
.lp-mobile-menu {
  position: fixed; inset: 0; z-index: 10010; background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex; flex-direction: column; padding: 1rem; pointer-events: none;
}
.lp-mobile-menu.open { transform: translateX(0); pointer-events: auto; }
.lp-mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(124,58,237,0.1); margin-bottom: 1rem;
}
.lp-mobile-menu-close {
  width: 44px; height: 44px; border: none; background: none;
  cursor: pointer; font-size: 1.4rem; color: var(--es-indigo);
  display: flex; align-items: center; justify-content: center; border-radius: 8px;
}
.lp-mobile-menu-close:hover { background: var(--es-cream); }
.lp-mobile-menu-links { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.lp-mobile-menu-links a {
  display: flex; align-items: center; padding: 0.85rem 1rem;
  font-size: 1rem; font-weight: 500; color: #555;
  border-radius: 8px; text-decoration: none; min-height: 44px;
  transition: background 0.2s, color 0.2s;
}
.lp-mobile-menu-links a:hover { background: var(--es-cream); color: var(--es-fuchsia); }
.lp-mobile-menu-actions {
  border-top: 1px solid rgba(124,58,237,0.1);
  padding-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.lp-mobile-menu-actions .btn { justify-content: center; }

/* ══════════════════════════════════════
   HERO MOCKUP: LAPTOP
   ══════════════════════════════════════ */
.lp-mockup-laptop {
  width: 100%; max-width: 640px; background: #1a1a2e;
  border-radius: 12px 12px 0 0; padding: 12px 12px 0;
  box-shadow: 0 20px 60px rgba(74,32,64,0.18); position: relative;
}
.lp-mockup-laptop-topbar { display: flex; align-items: center; gap: 6px; padding-bottom: 10px; }
.lp-mockup-laptop-topbar span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.lp-mockup-dot-r { background: #ff5f57; }
.lp-mockup-dot-y { background: #febc2e; }
.lp-mockup-dot-g { background: #28c840; }
.lp-mockup-laptop-base {
  height: 18px; background: #252540; border-radius: 0 0 8px 8px;
  max-width: calc(100% + 40px); margin: 0 -20px; position: relative;
}
.lp-mockup-laptop-base::after {
  content: ''; position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px; background: #3a3a5c; border-radius: 2px;
}

/* ══════════════════════════════════════
   HERO MOCKUP: PHONE
   ══════════════════════════════════════ */
.lp-mockup-phone {
  width: 200px; background: #1a1a2e; border-radius: 28px;
  padding: 10px; box-shadow: 0 20px 60px rgba(74,32,64,0.18); flex-shrink: 0;
}
.lp-mockup-phone-notch {
  width: 80px; height: 20px; background: #1a1a2e;
  border-radius: 0 0 12px 12px; margin: -10px auto 0;
  position: relative; z-index: 2;
}

/* ── Hero Carousel (laptop) ── */
.lp-carousel-screen {
  position: relative; aspect-ratio: 16/9; background: #f4f0fb;
  overflow: hidden; border-radius: 0 0 4px 4px;
}
.lp-carousel-track {
  display: flex; height: 100%;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); will-change: transform;
}
.lp-hero-desktop-slide {
  height: 100%; flex-shrink: 0;
  display: flex; align-items: flex-start; justify-content: center; background: #ede8f5;
}
.lp-hero-desktop-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
}
.lp-hero-desktop-slide--contain {
  align-items: center; justify-content: center;
  background: linear-gradient(180deg, #f0e8fb 0%, #e8dff8 100%);
}
.lp-hero-desktop-slide--contain img { object-fit: contain; object-position: center center; }

/* Carousel controls */
.lp-car-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.9); color: var(--es-indigo);
  font-size: 16px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15); z-index: 10;
  transition: background 0.2s, transform 0.2s; padding: 0; line-height: 1;
}
.lp-car-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.lp-car-prev { left: 6px; }
.lp-car-next { right: 6px; }
.lp-car-dots {
  position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 10;
}
.lp-car-dot {
  width: 7px; height: 7px; border-radius: 50%; border: none;
  background: rgba(74,0,143,0.2); cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.lp-car-dot.active { background: var(--es-indigo); transform: scale(1.3); }

/* ── Phone carousel screen ── */
.lp-phone-carousel-screen {
  width: 100%; aspect-ratio: 9 / 18; background: #fdf5ff;
  border-radius: 18px; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.lp-phone-track {
  display: flex; height: 100%;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: transform;
}
.lp-phone-photo-slide {
  height: 100%; flex-shrink: 0;
  display: flex; align-items: flex-start; justify-content: center; background: #f5f0fa;
}
.lp-phone-photo-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
}
.lp-phone-dots {
  position: absolute; bottom: 10px; left: 0; right: 0;
  display: flex; justify-content: center; align-items: center;
  gap: 6px; z-index: 10; padding: 6px 10px 8px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent);
}
.lp-phone-dot {
  width: 6px; height: 6px; border-radius: 50%; border: none;
  background: rgba(74,0,143,0.18); cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.lp-phone-dot.active { background: var(--es-indigo); transform: scale(1.4); }
.lp-phone-caption { font-size: 0.78rem; color: var(--es-lilac); opacity: 0.8; margin: 0; font-style: italic; }

/* ── Hero devices wrapper ── */
.lp-hero-devices { position: relative; }
.lp-hero-phone-wrap { display: none; }
.lp-hero-laptop-wrap { display: block; }
.lp-phone-shadow {
  box-shadow: 0 24px 64px rgba(74,0,143,0.25), 0 4px 16px rgba(0,0,0,0.15);
  width: min(260px, 74vw);
}

/* ══════════════════════════════════════
   LEGAL PAGES (Términos / Privacidad)
   ══════════════════════════════════════ */
.lp-legal {
  padding: 3rem 1.5rem 4rem;
  background: #fff;
}
.lp-legal-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}
.lp-legal-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--es-indigo);
  margin: 0.75rem 0 0.5rem;
}
.lp-legal-back {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--es-purple);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.lp-legal-back:hover { color: var(--es-fuchsia); }
.lp-legal-updated {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}
.lp-legal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--es-indigo);
  margin: 2rem 0 0.75rem;
}
.lp-legal-body p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin: 0 0 0.75rem;
}
.lp-legal-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.lp-legal-body li {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  padding: 0.25rem 0 0.25rem 0.25rem;
}
.lp-legal-body a {
  color: var(--es-purple);
  text-decoration: underline;
  text-decoration-color: rgba(124, 58, 237, 0.3);
  transition: color 0.2s;
}
.lp-legal-body a:hover { color: var(--es-fuchsia); }
.lp-legal-body strong { color: var(--es-indigo); }

/* ══════════════════════════════════════
   BLOG PAGES (Listing + Article)
   ══════════════════════════════════════ */
.lp-blog-page { padding: 5rem 1.5rem; background: #fff; }
.lp-blog-page .lp-blog-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.lp-blog-page .lp-blog-card { min-height: 280px; }
.lp-blog-page-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}
.lp-blog-page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--es-indigo);
  margin: 0.5rem 0;
}
.lp-blog-page-header p {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #666;
  max-width: 520px;
  margin: 0.5rem auto 0;
}
.lp-blog-empty {
  text-align: center;
  padding: 4rem 1rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #999;
}
.lp-blog-meta {
  display: flex;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #999;
}
.lp-blog-page-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
}
.lp-blog-page-cta p {
  font-family: var(--font-sans);
  color: #666;
  margin-bottom: 1rem;
}

/* Article single */
.lp-article { padding: 3rem 1.5rem 4rem; background: #fff; }
.lp-article-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}
.lp-article-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--es-indigo);
  margin: 0.75rem 0 0.5rem;
  line-height: 1.3;
}
.lp-article-header .lp-blog-cat { margin: 0.75rem auto 0; }
.lp-article-meta {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #999;
}
.lp-article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--es-indigo);
  margin: 2rem 0 0.75rem;
}
.lp-article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--es-purple);
  margin: 1.5rem 0 0.5rem;
}
.lp-article-body p {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin: 0 0 1rem;
}
.lp-article-lead {
  font-size: 1.1rem !important;
  color: #333 !important;
  font-weight: 500;
  line-height: 1.7 !important;
  border-left: 3px solid var(--es-purple);
  padding-left: 1rem;
  margin-bottom: 2rem !important;
}
.lp-article-body ul, .lp-article-body ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.lp-article-body ol { list-style: decimal; padding-left: 1.5rem; }
.lp-article-body ol li { padding: 0.2rem 0; }
.lp-article-body li {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  padding: 0.3rem 0;
}
.lp-article-body blockquote {
  background: var(--es-cream);
  border-left: 4px solid var(--es-lilac);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--es-indigo);
  font-style: italic;
  line-height: 1.6;
}
.lp-article-body blockquote p { margin: 0; color: inherit; font-family: inherit; font-size: inherit; }
.lp-article-body strong { color: var(--es-indigo); }
.lp-article-body a {
  color: var(--es-purple);
  text-decoration: underline;
  text-decoration-color: rgba(124, 58, 237, 0.3);
}
.lp-article-body a:hover { color: var(--es-fuchsia); }
.lp-article-body .btn-es-cta,
.lp-article-cta .btn-es-cta {
  color: #fff !important;
  text-decoration: none;
}
.lp-article-body .btn-es-cta:hover,
.lp-article-cta .btn-es-cta:hover {
  color: #fff !important;
}

/* ── Media destacada del artículo (video YouTube / imagen) ── */
.lp-article-media {
  margin: 0 0 2rem;
  border-radius: 12px;
  overflow: hidden;
}
.lp-article-media--video .lp-article-media-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.lp-article-media--video .lp-article-media-ratio iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.lp-article-media--img img {
  box-shadow: 0 4px 24px rgba(74,0,143,0.12);
}

.lp-article-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--es-cream);
  border-radius: 16px;
}
.lp-article-cta p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #888;
  margin: 0.75rem 0 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 640px) {
  .lp-manifiesto-sellos { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .lp-hamburger { display: flex; }
  .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* Hero mobile */
  .lp-hero { min-height: auto; }
  .lp-hero-content {
    flex-direction: column;
    padding-top: 5rem;
    padding-bottom: 2rem;
    min-height: 520px;
    text-align: center;
  }
  .lp-hero-text {
    max-width: 100%;
    min-width: 0;
    padding: 0 0.5rem;
  }
  .lp-hero-h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); text-shadow: 0 1px 14px rgba(255,255,255,0.95); }
  .lp-hero-sub {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    font-weight: 600;
    color: #1a1a2e;
    text-shadow: 0 1px 12px rgba(255,255,255,1), 0 0 24px rgba(255,255,255,0.9);
  }
  .lp-hero-bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.97) 0%,
      rgba(255,255,255,0.94) 40%,
      rgba(255,255,255,0.80) 60%,
      rgba(255,255,255,0.40) 80%,
      rgba(255,255,255,0.10) 100%
    );
  }
  .lp-hero-bg-img { object-position: center center; }
  .lp-hero-sub { font-size: 1rem; max-width: 320px; }
}

@media (max-width: 768px) {
  .lp-espejo-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .lp-espejo-card-img img { height: 240px; }
  .lp-formula-row { gap: 0.5rem; }
  .lp-formula-icon { font-size: 1.6rem; }
  .lp-formula-big { font-size: 1.5rem; }
  .lp-formula-op, .lp-formula-arrow { font-size: 1.2rem; }
  .lp-ruta-steps { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .lp-ruta-curve { display: none; }
  .lp-ruta-circle { width: 220px; height: 220px; }
  .lp-desk-props { display: none; }
  .lp-ingenieria-badges { flex-direction: column; gap: 0.5rem; }
  .lp-ing-separator { width: 40px; height: 2px; }
  .lp-planes { grid-template-columns: 1fr; }
  .lp-blog-grid { grid-template-columns: 1fr; }
  .lp-testimonios-grid { grid-template-columns: 1fr; }
  .lp-device--laptop { max-width: 100%; }
  .lp-ing-showcase-nav { flex-wrap: wrap; gap: 0.65rem; }
  .lp-ing-car-btn { width: 2.25rem; height: 2.25rem; font-size: 1.35rem; }
  .lp-ing-showcase-caption { min-height: 3.2em; padding: 0 0.5rem; }
  .lp-whatsapp-btn { bottom: 1.25rem; right: 1.25rem; left: auto; width: 48px; height: 48px; font-size: 1.4rem; }
  .lp-float-btn { bottom: 4.5rem; right: 1.25rem; }
}

@media (min-width: 768px) {
  .lp-hamburger { display: none; }
  .lp-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .lp-footer-bottom { flex-direction: row; }
}

/* ── Botón Google protagonista en registro/login ─────────────────── */
.reg-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 2px solid #dadce0;
  background: #fff;
  color: #3c4043;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow 0.18s, border-color 0.18s, background 0.18s;
  position: relative;
  margin-bottom: 0.25rem;
}
.reg-google-btn:hover {
  border-color: #4285F4;
  box-shadow: 0 2px 12px 0 rgba(66,133,244,0.18);
  background: #f8faff;
  color: #3c4043;
}
.reg-google-badge {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary, #a855f7));
  color: #fff;
  border-radius: 99px;
  padding: 0.18em 0.6em;
  white-space: nowrap;
}
.reg-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.reg-divider::before,
.reg-divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid var(--gray-border);
}
.reg-divider span {
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════════
   TIPOGRAFÍA MEJORADA — EllaSuite Landing 2026
   Eleva contraste, peso y jerarquía visual en toda la página
   ══════════════════════════════════════════════════════════════════ */

/* ── 1. Gradiente de texto en todos los h2 de sección ── */
.lp-espejo-titulo,
.lp-ruta-titulo,
.lp-ingenieria-titulo,
.lp-pasaportes-titulo,
.lp-section-header h2,
.lp-manifiesto-section .lp-manifiesto-title {
  background: linear-gradient(135deg, #4A008F 0%, #A0088F 60%, #A056FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* ── 2. em dentro de títulos — acento fuchsia vivo ── */
.lp-espejo-titulo em,
.lp-ruta-titulo em,
.lp-ingenieria-titulo em,
.lp-pasaportes-titulo em,
.lp-section-header h2 em,
.lp-hero-h1 em {
  background: linear-gradient(90deg, #A0088F, #A056FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* ── 3. Eyebrow — pastilla más llamativa ── */
.lp-eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, rgba(160,8,143,0.12), rgba(160,86,255,0.15));
  border: 1px solid rgba(160,86,255,0.35);
  border-radius: 99px;
  padding: 0.28em 1em;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #7B00CC;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

/* ── 4. Sub-descripciones de sección — más cuerpo y contraste ── */
.lp-ingenieria-sub,
.lp-pasaportes-sub,
.lp-section-header p {
  font-size: 1.05rem;
  font-weight: 500;
  color: #2d1f4a;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── 5. Espejo: subtítulos de funcionalidades ── */
.lp-espejo-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--es-fuchsia);
}
.lp-espejo-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3a006f;
  letter-spacing: -0.01em;
}

/* ── 6. Ruta: descripciones de pasos ── */
.lp-ruta-step-title {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.lp-ruta-step-desc {
  font-weight: 500;
  color: #2d1f4a;
  line-height: 1.75;
}
.lp-ruta-trust {
  font-weight: 600;
  color: #7B00CC;
  font-size: 0.88rem;
}

/* ── 7. Ingeniería: badges y caption ── */
.lp-ing-badge {
  font-weight: 800;
  letter-spacing: 0.02em;
}
.lp-ing-showcase-caption {
  font-weight: 600;
  color: #2d1f4a;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
}

/* ── 8. Planes: descripción y features ── */
.lp-pase-name { font-weight: 700; }
.lp-pase-feature span {
  font-weight: 500;
  color: #2d1f4a;
}
.lp-pase-cierre {
  font-weight: 500;
  color: #2d1f4a;
}
.lp-pase-motto {
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ── 9. Testimonios — la voz del cliente más presente ── */
.lp-testimonio-quote {
  font-size: 1.025rem;
  font-weight: 500;
  color: #1a0f2e;
  line-height: 1.75;
}
.lp-testimonio-quote::before { content: '\201C'; font-size: 1.4em; color: var(--es-lilac); line-height: 0; vertical-align: -0.3em; margin-right: 0.1em; }
.lp-testimonio-quote::after  { content: '\201D'; font-size: 1.4em; color: var(--es-lilac); line-height: 0; vertical-align: -0.3em; margin-left: 0.1em; }
.lp-testimonio-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #3a006f;
}
.lp-testimonio-role {
  font-weight: 500;
  color: #7B00CC;
  font-size: 0.82rem;
}

/* ── 10. Blog: cards más expresivas ── */
.lp-blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3a006f;
  line-height: 1.35;
}
.lp-blog-card p {
  font-weight: 500;
  color: #2d1f4a;
}
.lp-blog-link {
  font-weight: 700;
  color: var(--es-fuchsia);
}

/* ── 11. FAQ — summary más llamativo ── */
.lp-faq-item summary {
  font-size: 1.02rem;
  font-weight: 700;
  color: #3a006f;
}
.lp-faq-item p {
  font-weight: 500;
  color: #2d1f4a;
  line-height: 1.75;
}

/* ── 12. Manifiesto — cuerpo de texto más legible ── */
.lp-manifiesto-intro,
.lp-manifiesto-body {
  font-weight: 500;
  color: #2d1f4a;
  line-height: 1.85;
}
.lp-manifiesto-sentencia {
  font-weight: 700;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--es-purple);
}
.lp-manifiesto-subtitle {
  font-weight: 500;
  color: #4a2d72;
  font-size: 1.05rem;
}

/* ── 13. Footer — jerarquía más clara ── */
.lp-footer h4 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #3a006f;
}
.lp-footer-links a {
  font-weight: 500;
  color: #4a3470;
}
.lp-footer-links a:hover { color: var(--es-fuchsia); }
.lp-footer-tagline {
  font-weight: 500;
  color: #4a2d72;
  line-height: 1.7;
}

/* ── 14. Valores KPI del hero — más impacto ── */
.lp-hero-kpi-value {
  font-size: 1.45rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4A008F, #A056FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero-kpi-title {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #3a006f;
}

/* ── 15. Garantía y cierre ── */
.lp-garantia {
  font-weight: 500;
  color: #2d1f4a;
  line-height: 1.7;
}
.lp-formula-name {
  font-weight: 700;
  color: #3a006f;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.lp-formula-tagline {
  font-weight: 700;
  color: var(--es-fuchsia);
  font-size: 1rem;
}

/* ── Mobile: asegurar que los textos de sección mantengan impacto ── */
@media (max-width: 767px) {
  .lp-ingenieria-sub,
  .lp-pasaportes-sub,
  .lp-section-header p {
    font-size: 0.97rem;
    max-width: 100%;
  }
  .lp-ruta-step-desc { max-width: 100%; }
  .lp-testimonio-quote { font-size: 0.97rem; }
}

/* ══════════════════════════════════════════════
   SECCIÓN: TIENDA EN LÍNEA (lp-shop)
══════════════════════════════════════════════ */
.lp-shop {
  background:
    linear-gradient(160deg, #fff8fd 0%, #fdf0f9 45%, #f3eeff 100%);
  position: relative;
  overflow: hidden;
}
.lp-shop::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 90% 40%, rgba(219,80,165,.10), transparent 65%),
    radial-gradient(ellipse 45% 35% at 5%  75%, rgba(168,85,247,.08), transparent 60%);
  pointer-events: none;
}

/* wrap dos columnas */
.lp-shop-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .lp-shop-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Texto ── */
.lp-shop-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: linear-gradient(135deg, #db50a5, #a855f7);
  color: #fff; font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .35em .9em; border-radius: 999px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 18px rgba(219,80,165,.3);
}
.lp-shop-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700; line-height: 1.1;
  color: #1a1224; margin-bottom: 1rem;
}
.lp-shop-title em { font-style: normal; color: #db50a5; }
.lp-shop-desc {
  color: #4b3f5e; font-size: 1rem;
  line-height: 1.65; max-width: 42rem; margin-bottom: 1.5rem;
}
.lp-shop-feats {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: flex; flex-direction: column; gap: .55rem;
}
.lp-shop-feats li {
  display: flex; align-items: center; gap: .6rem;
  color: #2d1f40; font-size: .92rem;
}
.lp-shop-feats li i { color: #16a34a; font-size: .85rem; flex-shrink: 0; }

.lp-shop-ctas {
  display: flex; gap: .85rem; flex-wrap: wrap; align-items: center;
}

/* ── Columna imagen real ── */
.lp-shop-mock {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  padding: 1.5rem 1rem 3.5rem;
}
.lp-shop-phone-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 0;
  filter: drop-shadow(0 24px 56px rgba(28,20,36,.18))
          drop-shadow(0 4px 16px rgba(219,80,165,.12));
  display: block;
  margin: 0 auto;
}

/* ── Badges flotantes ── */
.lp-shop-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: .6rem .85rem;
  display: flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; color: #1a1224;
  box-shadow: 0 8px 32px rgba(28,20,36,.14);
  white-space: nowrap;
  animation: lp-float-bob 3s ease-in-out infinite;
}
.lp-shop-float i { font-size: 1.1rem; flex-shrink: 0; }
.lp-shop-float span { line-height: 1.25; }

.lp-shop-float--qr {
  top: 1rem; right: -0.5rem;
  animation-delay: 0s;
  border: 1.5px solid rgba(219,80,165,.15);
}
.lp-shop-float--qr i { color: #1a1224; }

.lp-shop-float--order {
  bottom: 2rem; left: -1rem;
  animation-delay: 1.4s;
  background: linear-gradient(135deg,#25d366,#128c7e);
  color: #fff;
  border: none;
}
.lp-shop-float--order i { color: #fff; font-size: 1.25rem; }
.lp-shop-float--order span { color: #fff; }

@keyframes lp-float-bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (max-width: 600px) {
  .lp-shop-phone-img { max-width: 240px; }
  .lp-shop-float--qr  { right: 0; top: 0.5rem; }
  .lp-shop-float--order { left: 0; bottom: 1rem; }
}
