/* ============================================================
   NovaVentas — Landing (rediseño moderno)
   Estética: SaaS premium, neutro cálido, tipografía display,
   botones píldora, profundidad sutil. Mobile-first.
   ============================================================ */

/* ---------- Tipografía ---------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap");

/* ---------- Tokens ---------- */
:root {
  /* Neutros + blanco */
  --lp-bg:           #f8f9fc;  /* fondo casi blanco con toque azul */
  --lp-surface:      #ffffff;  /* cards blancas */
  --lp-surface-2:    #f1f3f9;  /* cards alternas */
  --lp-ink:          #0f1419;  /* texto principal oscuro */
  --lp-ink-soft:     #475569;  /* texto secundario */
  --lp-ink-faint:    #8a92a6;  /* texto terciario */
  --lp-line:         #e0e5f0;  /* bordes */
  --lp-line-strong:  #cbd5e7;

  /* Acento azul profundo */
  --lp-accent:       #2563eb;  /* azul moderno SaaS */
  --lp-accent-ink:   #ffffff;
  --lp-dot:          #3b82f6;  /* azul más claro */

  /* Oscuro (footer / contacto / botones) */
  --lp-dark:         #1e293b;
  --lp-dark-soft:    #334155;
  --lp-on-dark:      #f1f5f9;
  --lp-on-dark-soft: #cbd5e1;

  --lp-radius:      14px;
  --lp-radius-lg:   22px;
  --lp-radius-pill: 999px;

  --lp-shadow-sm: 0 1px 2px rgba(15,20,25,.06), 0 1px 1px rgba(15,20,25,.04);
  --lp-shadow:    0 12px 30px -12px rgba(15,20,25,.14);
  --lp-shadow-lg: 0 40px 80px -28px rgba(15,20,25,.22);

  --lp-max: 1200px;
  --lp-gut: clamp(20px, 5vw, 48px);
  --lp-nav-h: 72px;

  --lp-font:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --lp-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
}

/* ---------- Reset acotado a la landing ---------- */
.lp-body {
  margin: 0;
  background: var(--lp-bg);
  color: var(--lp-ink);
  font-family: var(--lp-font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.lp-body *, .lp-body *::before, .lp-body *::after { box-sizing: border-box; }
.lp-body img, .lp-body svg { display: block; max-width: 100%; }
.lp-body a { color: inherit; text-decoration: none; }

/* Bloquea scroll cuando el menú móvil está abierto */
.lp-body.lp-no-scroll { overflow: hidden; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--lp-nav-h) + 16px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-body *, .lp-body *::before, .lp-body *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* Utilidades de texto (por si Tailwind no está) */
.text-balance { text-wrap: balance; }
.text-pretty  { text-wrap: pretty; }

.lp-container {
  width: 100%;
  max-width: var(--lp-max);
  margin-inline: auto;
  padding-inline: var(--lp-gut);
}

/* Foco accesible global */
.lp-body :focus-visible {
  outline: 2px solid var(--lp-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--lp-bg) 80%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.lp-nav--scrolled {
  background: color-mix(in srgb, var(--lp-bg) 92%, transparent);
  border-bottom-color: var(--lp-line);
  box-shadow: 0 1px 0 rgba(28,26,23,.03);
}
.lp-nav__inner {
  max-width: var(--lp-max);
  margin-inline: auto;
  padding-inline: var(--lp-gut);
  height: var(--lp-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: opacity .15s ease;
}
.lp-nav__brand:hover { opacity: .82; }
.lp-nav__logo-icon { display: grid; place-items: center; }
.lp-nav__logo-icon svg { width: 30px; height: 30px; border-radius: 9px; }
.lp-nav__brand-text { font-size: 1.18rem; }
.lp-nav__brand-text strong { font-weight: 700; }

.lp-nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--lp-ink-soft);
  border-radius: var(--lp-radius-pill);
  transition: color .18s ease, background .18s ease;
}
.lp-nav__link:hover { color: var(--lp-ink); background: rgba(28,26,23,.05); }
.lp-nav__link--active { color: var(--lp-ink); }

.lp-nav__cta {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--lp-accent-ink);
  background: var(--lp-accent);
  border-radius: var(--lp-radius-pill);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.lp-body a.lp-nav__cta,
.lp-body a.lp-nav__cta:visited {
  color: var(--lp-accent-ink);
}
.lp-nav__cta:hover {
  background: color-mix(in srgb, var(--lp-accent) 88%, #000);
  color: var(--lp-accent-ink);
  transform: translateY(-1px);
  box-shadow: var(--lp-shadow);
}

/* Burger */
.lp-nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--lp-line-strong);
  background: var(--lp-surface);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.lp-nav__burger span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--lp-ink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .28s ease, opacity .2s ease, top .28s ease;
}
.lp-nav__burger span:nth-child(1) { top: 16px; }
.lp-nav__burger span:nth-child(2) { top: 21px; }
.lp-nav__burger span:nth-child(3) { top: 26px; }
/* abierto -> X (soporta clase del controller y atributo aria) */
.lp-nav__burger--open span:nth-child(1),
.lp-nav__burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.lp-nav__burger--open span:nth-child(2),
.lp-nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lp-nav__burger--open span:nth-child(3),
.lp-nav__burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

.lp-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,26,23,.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .28s ease;
  z-index: 90;
}

/* ============================================================
   BOTONES
   ============================================================ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  padding: 13px 24px;
  border-radius: var(--lp-radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.lp-btn--lg { padding: 16px 28px; font-size: 1.02rem; }
.lp-btn--full { width: 100%; }

.lp-btn--primary {
  color: var(--lp-on-dark);
  background: var(--lp-dark);
}
.lp-body a.lp-btn--primary,
.lp-body a.lp-btn--primary:visited {
  color: var(--lp-on-dark);
}
.lp-btn--primary:hover {
  background: var(--lp-dark-soft);
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow);
}
/* Flecha en círculo (estilo "Request Access") */
.lp-btn--primary svg {
  background: var(--lp-on-dark);
  color: var(--lp-dark);
  border-radius: 50%;
  padding: 5px;
  width: 26px;
  height: 26px;
  transition: transform .2s ease;
}
.lp-btn--primary:hover svg { transform: translateX(3px); }

.lp-btn--ghost {
  color: var(--lp-ink);
  background: transparent;
  border-color: var(--lp-line-strong);
}
.lp-btn--ghost:hover {
  background: var(--lp-surface);
  border-color: var(--lp-ink);
  transform: translateY(-2px);
}

/* ============================================================
   BADGES
   ============================================================ */
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--lp-ink-soft);
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-pill);
}
.lp-badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lp-dot);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--lp-dot) 25%, transparent);
}
.lp-badge--dark {
  color: var(--lp-on-dark);
  background: var(--lp-dark);
  border-color: var(--lp-dark);
}
.lp-badge--white {
  color: var(--lp-on-dark);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}

/* ============================================================
   HERO  (centrado, tipo "Moment")
   ============================================================ */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(56px, 9vw, 110px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
.lp-hero__bg { display: none; } /* sin blobs en el nuevo diseño */

.lp-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lp-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 820px;
}
.lp-hero__title {
  margin: 6px 0 0;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.02;
  font-size: clamp(2.6rem, 7vw, 5rem);
}
.lp-hero__title--accent {
  font-family: var(--lp-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.01em;
  color: var(--lp-accent);
}
.lp-hero__sub {
  margin: 0;
  max-width: 560px;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--lp-ink-soft);
  line-height: 1.55;
}
.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 4px;
}
.lp-hero__fine {
  margin: 0;
  font-size: .88rem;
  color: var(--lp-ink-faint);
}

/* Visual / mockup */
.lp-hero__visual {
  width: 100%;
  max-width: 1000px;
  margin-top: clamp(40px, 6vw, 72px);
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
}
/* El mockup interno ya no flota ni necesita marco doble */
.lp-mockup { display: block; width: 100%; }
.lp-mockup__screen { width: 100%; max-width: 100%; border-radius: 0; border: none; }

/* ============================================================
   STATS
   ============================================================ */
.lp-stats {
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  background: transparent;
}
.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 16px;
}
.lp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  min-width: 0;
  padding: 0;
  border: none;
}
.lp-stat__num {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--lp-ink);
  line-height: 1;
}
.lp-stat__label {
  font-size: .9rem;
  color: var(--lp-ink-faint);
}
.lp-stat--sep { position: relative; border: none; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.lp-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  max-width: 660px;
}
.lp-section-title {
  margin: 0;
  max-width: 620px;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.08;
  color: var(--lp-ink);
}
.lp-section-sub {
  margin: 0;
  max-width: 520px;
  color: var(--lp-ink-soft);
  font-size: 1.05rem;
}

/* ============================================================
   FEATURES
   ============================================================ */
.lp-features { padding: clamp(64px, 9vw, 110px) 0; }
.lp-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.lp-feat-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  padding: 28px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.lp-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow);
  border-color: var(--lp-line-strong);
}
.lp-feat-card__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--lp-ink);
  background: var(--lp-surface-2);
  transition: transform .22s ease;
}
.lp-feat-card:hover .lp-feat-card__icon { transform: scale(1.06) rotate(-3deg); }
.lp-feat-card__icon--blue   { background: #d9e7f0; color: #1f5577; }
.lp-feat-card__icon--green  { background: #d8e8de; color: #2f6f4e; }
.lp-feat-card__icon--orange { background: #f1e3d4; color: #95612b; }
.lp-feat-card__icon--purple { background: #e2ddec; color: #4a4170; }
.lp-feat-card__icon--teal   { background: #d4e8e6; color: #246b66; }
.lp-feat-card__icon--red    { background: #f0dcd8; color: #934337; }

.lp-feat-card__title {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--lp-ink);
}
.lp-feat-card__text {
  margin: 0 0 16px;
  color: var(--lp-ink-soft);
  font-size: .96rem;
}
.lp-feat-card__list {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--lp-line);
  display: grid;
  gap: 10px;
}
.lp-feat-card__list li {
  position: relative;
  padding-left: 26px;
  font-size: .9rem;
  color: var(--lp-ink-soft);
}
.lp-feat-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--lp-accent);
}
.lp-feat-card__list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 6px;
  width: 6px; height: 3px;
  border-left: 2px solid var(--lp-accent-ink);
  border-bottom: 2px solid var(--lp-accent-ink);
  transform: rotate(-45deg);
}

/* ============================================================
   SHOWCASE
   ============================================================ */
.lp-showcase {
  padding: clamp(64px, 9vw, 110px) 0;
  background: var(--lp-surface-2);
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
}
.lp-showcase__grid { display: grid; gap: clamp(48px, 7vw, 88px); }
.lp-showcase__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.lp-showcase__desc { order: -1; } /* descripción primero en móvil */
.lp-showcase__desc h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--lp-ink);
}
.lp-showcase__desc p {
  margin: 0;
  color: var(--lp-ink-soft);
  font-size: 1.05rem;
  max-width: 460px;
}
.lp-screen {
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow);
  overflow: hidden;
  min-height: 220px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.lp-screen:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-lg);
}

/* ============================================================
   CONTACTO  (bloque oscuro)
   ============================================================ */
.lp-contact {
  padding: clamp(64px, 9vw, 110px) 0;
  background: var(--lp-dark);
  color: var(--lp-on-dark);
}
.lp-contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.lp-contact__copy { display: flex; flex-direction: column; gap: 18px; }
.lp-contact__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.08;
}
.lp-contact__sub {
  margin: 0;
  color: var(--lp-on-dark-soft);
  font-size: 1.08rem;
  max-width: 440px;
}
.lp-contact__perks {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.lp-contact__perks li {
  position: relative;
  padding-left: 30px;
  color: var(--lp-on-dark-soft);
}
.lp-contact__perks li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--lp-accent);
}
.lp-contact__perks li::after {
  content: "";
  position: absolute;
  left: 6px; top: 7px;
  width: 6px; height: 3px;
  border-left: 2px solid var(--lp-accent-ink);
  border-bottom: 2px solid var(--lp-accent-ink);
  transform: rotate(-45deg);
}

/* Form */
.lp-contact__form-wrap {
  background: var(--lp-surface);
  color: var(--lp-ink);
  border-radius: var(--lp-radius-lg);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--lp-shadow-lg);
}
.lp-contact__form { display: grid; gap: 16px; }
.lp-form-group { display: grid; gap: 7px; }
.lp-form-group label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-optional { font-weight: 400; color: var(--lp-ink-faint); }
.lp-input {
  width: 100%;
  font-family: inherit;
  font-size: 1rem; /* evita zoom iOS */
  color: var(--lp-ink);
  background: var(--lp-bg);
  border: 1px solid var(--lp-line-strong);
  border-radius: var(--lp-radius);
  padding: 12px 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.lp-input::placeholder { color: var(--lp-ink-faint); }
.lp-input:focus {
  outline: none;
  border-color: var(--lp-accent);
  background: var(--lp-surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--lp-accent) 18%, transparent);
}
.lp-input--textarea { resize: vertical; min-height: 92px; }
.lp-contact__form .lp-btn { margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
  background: var(--lp-bg);
  padding: clamp(40px, 6vw, 64px) 0 32px;
  border-top: 1px solid var(--lp-line);
}
.lp-footer__inner { display: grid; gap: 24px; }
.lp-footer__brand { display: flex; flex-direction: column; gap: 6px; }
.lp-footer__logo { font-size: 1.2rem; font-weight: 600; }
.lp-footer__logo strong { font-weight: 700; }
.lp-footer__tagline { margin: 0; color: var(--lp-ink-faint); font-size: .92rem; }
.lp-footer__links { display: flex; flex-wrap: wrap; gap: 18px; }
.lp-footer__links a {
  font-size: .94rem;
  color: var(--lp-ink-soft);
  transition: color .18s ease;
}
.lp-footer__links a:hover { color: var(--lp-ink); }
.lp-footer__copy {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--lp-line);
  color: var(--lp-ink-faint);
  font-size: .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
}
.lp-footer__by strong { color: var(--lp-ink-soft); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablet ---- */
@media (min-width: 640px) {
  .lp-stats__grid { grid-template-columns: repeat(4, 1fr); }
  .lp-stat--sep::before {
    content: "";
    position: absolute;
    left: -8px; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 38px;
    background: var(--lp-line);
  }
  .lp-features__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .lp-footer__copy { grid-column: 1 / -1; }
}

/* ---- Desktop ---- */
@media (min-width: 960px) {
  .lp-features__grid { grid-template-columns: repeat(3, 1fr); }

  .lp-showcase__item {
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
  }
  .lp-showcase__desc { order: 0; }
  .lp-showcase__item--reverse .lp-screen { order: 2; }
  .lp-showcase__item--reverse .lp-showcase__desc { order: 1; }

  .lp-contact__inner {
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: center;
  }
}

/* ---- Menú móvil ---- */
@media (max-width: 860px) {
  .lp-nav__burger { display: block; }

  .lp-nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: calc(var(--lp-nav-h) + 16px) 24px 32px;
    background: var(--lp-bg);
    border-left: 1px solid var(--lp-line);
    box-shadow: -30px 0 80px -30px rgba(28,26,23,.4);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    z-index: 95;
  }
  .lp-nav__menu--open { transform: translateX(0); }

  .lp-nav__link {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: var(--lp-radius);
  }
  .lp-nav__link:hover { background: var(--lp-surface); }
  .lp-nav__link--active { background: var(--lp-surface); }

  .lp-nav__cta {
    margin-left: 0;
    margin-top: 10px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1.05rem;
  }

  /* Overlay: el controller agrega --show, pero también soportamos el hermano abierto */
  .lp-nav__overlay { display: block; opacity: 0; pointer-events: none; }
  .lp-nav__overlay--show,
  .lp-nav__menu--open ~ .lp-nav__overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ---- Móvil chico ---- */
@media (max-width: 480px) {
  .lp-hero__actions { flex-direction: column; width: 100%; }
  .lp-hero__actions .lp-btn { width: 100%; }
  .lp-feat-card { padding: 24px; }
}

/* ============================================================
   MOCKUPS — browser desktop (hero) + screens (showcase)
   ============================================================ */

/* ---- Barra del navegador ---- */
.lp-mockup__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--lp-surface-2);
  border-bottom: 1px solid var(--lp-line);
}
.lp-mockup__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lp-line-strong);
}
.lp-mockup__dot:nth-child(1) { background: #e0685c; }
.lp-mockup__dot:nth-child(2) { background: #e6b34d; }
.lp-mockup__dot:nth-child(3) { background: #5bb87e; }
.lp-mockup__url {
  margin-left: 12px;
  padding: 5px 14px;
  flex: 1;
  max-width: 360px;
  background: var(--lp-bg);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-pill);
  font-size: .8rem;
  color: var(--lp-ink-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- App dentro del mockup ---- */
.lp-app {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 360px;
  background: var(--lp-bg);
}
.lp-app__side {
  padding: 20px 16px;
  background: var(--lp-dark);
  color: var(--lp-on-dark);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.lp-app__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: .95rem;
}
.lp-app__brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--lp-dot);
}
.lp-app__nav { display: flex; flex-direction: column; gap: 4px; }
.lp-app__navitem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 9px;
  font-size: .85rem;
  color: var(--lp-on-dark-soft);
}
.lp-app__navitem--active {
  background: var(--lp-dark-soft);
  color: var(--lp-on-dark);
}
.lp-app__navico {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: currentColor;
  opacity: .55;
}
.lp-app__navitem--active .lp-app__navico { background: var(--lp-dot); opacity: 1; }

.lp-app__main { padding: 22px clamp(16px, 3vw, 28px); }
.lp-app__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.lp-app__title { font-weight: 700; font-size: 1.05rem; }
.lp-app__chip {
  padding: 4px 12px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-pill);
  font-size: .78rem;
  color: var(--lp-ink-soft);
}
.lp-app__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.lp-kpi {
  padding: 14px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-kpi__label { font-size: .72rem; color: var(--lp-ink-faint); }
.lp-kpi__value { font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; }
.lp-kpi__trend { font-size: .72rem; color: var(--lp-ink-faint); font-weight: 600; }
.lp-kpi__trend--up { color: var(--lp-accent); }

.lp-app__chart {
  padding: 18px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
}
.lp-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 110px;
}
.lp-chart__bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--lp-line-strong);
}
.lp-chart__bar--hi { background: var(--lp-accent); }

/* ---- Screens del showcase ---- */
.lp-scr {
  padding: clamp(18px, 3vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-scr__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-scr__title { font-weight: 700; font-size: 1.05rem; }
.lp-scr__badge {
  padding: 4px 12px;
  background: var(--lp-accent);
  color: var(--lp-accent-ink);
  border-radius: var(--lp-radius-pill);
  font-size: .74rem;
  font-weight: 600;
}
.lp-scr__badge--soft {
  background: var(--lp-surface-2);
  color: var(--lp-ink-soft);
  border: 1px solid var(--lp-line);
}

.lp-scr__field {
  padding: 12px 14px;
  background: var(--lp-bg);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-scr__label { font-size: .72rem; color: var(--lp-ink-faint); }
.lp-scr__value { font-weight: 600; font-size: .92rem; }

.lp-scr__lines { display: flex; flex-direction: column; gap: 8px; }
.lp-scr__line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--lp-bg);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  font-size: .88rem;
}
.lp-scr__line-qty { color: var(--lp-ink-faint); font-size: .8rem; }
.lp-scr__line-amt { font-weight: 600; }

.lp-scr__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-top: 1px dashed var(--lp-line-strong);
}
.lp-scr__total-label { color: var(--lp-ink-soft); font-size: .9rem; }
.lp-scr__total-amt { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; }

.lp-scr__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-scr__btn {
  padding: 11px 18px;
  background: var(--lp-dark);
  color: var(--lp-on-dark);
  border-radius: var(--lp-radius-pill);
  font-size: .85rem;
  font-weight: 600;
}
.lp-scr__cae { font-size: .76rem; color: var(--lp-accent); font-weight: 600; }

/* Dashboard screen */
.lp-scr__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.lp-scr__stat {
  padding: 12px;
  background: var(--lp-bg);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.lp-scr__stat-label { font-size: .7rem; color: var(--lp-ink-faint); }
.lp-scr__stat-value { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; }

.lp-scr__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  padding: 14px;
  background: var(--lp-bg);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
}
.lp-scr__cbar {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: var(--lp-line-strong);
}
.lp-scr__cbar--hi { background: var(--lp-accent); }

.lp-scr__rows { display: flex; flex-direction: column; gap: 6px; }
.lp-scr__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: .86rem;
}
.lp-scr__row-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lp-accent);
}
.lp-scr__row-dot--2 { background: var(--lp-dot); }
.lp-scr__row-dot--3 { background: var(--lp-line-strong); }
.lp-scr__row-amt { font-weight: 600; }

/* Mockups en pantallas chicas */
@media (max-width: 560px) {
  .lp-app { grid-template-columns: 1fr; }
  .lp-app__side { flex-direction: row; align-items: center; gap: 14px; overflow-x: auto; }
  .lp-app__nav { flex-direction: row; }
  .lp-app__kpis { grid-template-columns: 1fr; }
  .lp-scr__stats { grid-template-columns: 1fr; }
}
