/*!
 * Landing page pública del ISP.
 * Todo va bajo `.lp` para no chocar con Bootstrap / Color Admin, que se cargan
 * globalmente en el layout. Los colores salen de Ajustes → Landing Page y se
 * inyectan como variables CSS desde la vista.
 */

.lp {
    --landing-fg: #1a1f2b;
    --landing-muted-fg: #5b6472;
    --landing-bg: #ffffff;
    --landing-bg-muted: #f6f8fb;
    --landing-border: #e5e9f0;
    --landing-radius: 14px;
    --landing-shadow: 0 8px 30px -12px rgb(15 23 42 / 0.15);

    font-family: 'Open Sans', system-ui, sans-serif;
    color: var(--landing-fg);
    background: var(--landing-bg);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}

/* ----------------------------------------------------------------------
   Reset acotado. Se escribe con `:where(.lp)` a propósito: así el selector
   pesa lo mismo que las reglas de elemento de Bootstrap (que se cargan antes,
   por lo que gana esta hoja) pero menos que cualquier clase `.lp-*` de abajo.
   Con `.lp h1` el reset ganaría a `.lp-hero__title` y rompería los márgenes.
   ---------------------------------------------------------------------- */
:where(.lp) *,
:where(.lp) *::before,
:where(.lp) *::after { box-sizing: border-box; }

:where(.lp) h1, :where(.lp) h2, :where(.lp) h3,
:where(.lp) h4, :where(.lp) h5, :where(.lp) h6 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0;
    line-height: 1.14;
    color: inherit;
}
:where(.lp) p { margin: 0; }
:where(.lp) a { text-decoration: none; color: inherit; }
:where(.lp) a:hover { text-decoration: none; color: inherit; }
:where(.lp) ul, :where(.lp) ol { list-style: none; margin: 0; padding: 0; }
:where(.lp) li { margin: 0; }
:where(.lp) img { max-width: 100%; display: block; height: auto; }
:where(.lp) button { font-family: inherit; background: none; border: 0; padding: 0; color: inherit; }
:where(.lp) figure { margin: 0; }
:where(.lp) iframe { border: 0; display: block; }
:where(.lp) input, :where(.lp) select, :where(.lp) textarea { font-family: inherit; }
:where(.lp) label { margin: 0; }
.lp *:focus-visible { outline: 3px solid var(--landing-accent); outline-offset: 3px; }

.lp-skip {
    position: absolute; left: -9999px; top: 0;
    background: var(--landing-primary); color: #fff;
    padding: 12px 20px; z-index: 3000; border-radius: 0 0 10px 0; font-weight: 600;
}
.lp-skip:focus { left: 0; }

.lp-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
/* Deja aire bajo la barra fija al saltar con los enlaces ancla. */
.lp section[id], .lp div[id] { scroll-margin-top: 96px; }
.lp-sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Botones ---------- */
.lp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em;
    padding: 12px 24px; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; min-height: 46px; white-space: nowrap;
    transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.lp-btn i { font-size: 1rem; }
.lp-btn--primary {
    background: var(--landing-primary); color: #fff;
    box-shadow: 0 8px 22px -10px color-mix(in srgb, var(--landing-primary) 75%, transparent);
}
.lp-btn--primary:hover {
    background: color-mix(in srgb, var(--landing-primary) 88%, black);
    color: #fff; transform: translateY(-2px);
}
.lp-btn--accent { background: var(--landing-accent); color: #08312a; }
.lp-btn--accent:hover { background: color-mix(in srgb, var(--landing-accent) 88%, black); transform: translateY(-2px); }
.lp-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.lp-btn--outline-light:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.lp-btn--outline {
    background: transparent; color: var(--landing-primary);
    border-color: color-mix(in srgb, var(--landing-primary) 45%, transparent);
}
.lp-btn--outline:hover { background: color-mix(in srgb, var(--landing-primary) 8%, transparent); color: var(--landing-primary); }
.lp-btn--ghost { background: transparent; color: var(--landing-fg); border-color: var(--landing-border); }
.lp-btn--ghost:hover { background: var(--landing-bg-muted); color: var(--landing-fg); }
.lp-btn--sm { padding: 9px 18px; font-size: 0.8rem; min-height: 40px; }
.lp-btn--lg { padding: 15px 30px; font-size: 0.98rem; }
.lp-btn--block { width: 100%; }

.lp-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: color-mix(in srgb, var(--landing-accent) 20%, transparent);
    color: var(--landing-accent);
    border: 1px solid color-mix(in srgb, var(--landing-accent) 45%, transparent);
    padding: 7px 16px; border-radius: 999px;
    font-size: 0.74rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
}
.lp-kicker {
    display: block; color: var(--landing-accent);
    font-size: 0.76rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
    margin-bottom: 14px;
}
.lp-section { padding: 96px 0; }
.lp-section--muted { background: var(--landing-bg-muted); }
.lp-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.lp-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.lp-head p { color: var(--landing-muted-fg); font-size: 1.04rem; }

/* ---------- Animaciones de entrada ---------- */
.lp-reveal { opacity: 0; transform: translateY(30px); transition: opacity 700ms ease, transform 700ms ease; }
.lp-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .lp *,
    .lp *::before,
    .lp *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .lp-reveal { opacity: 1; transform: none; }
}

/* ---------- Barra superior ---------- */
.lp-topbar {
    background: var(--landing-bg-muted);
    border-bottom: 1px solid var(--landing-border);
    font-size: 0.8rem; color: var(--landing-muted-fg);
}
.lp-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 42px; flex-wrap: wrap; }
.lp-topbar__list { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.lp-topbar__list li { display: flex; align-items: center; gap: 8px; }
.lp-topbar__list i { color: var(--landing-primary); font-size: 0.95rem; }
.lp-topbar__social { display: flex; align-items: center; gap: 6px; }
.lp-topbar__social a {
    width: 28px; height: 28px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff; border: 1px solid var(--landing-border); color: var(--landing-muted-fg); font-size: 0.82rem;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.lp-topbar__social a:hover { background: var(--landing-primary); border-color: var(--landing-primary); color: #fff; }

/* ---------- Navegación ---------- */
.lp-nav {
    position: sticky; top: 0; z-index: 1200;
    background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}
.lp-nav.is-scrolled { border-bottom-color: var(--landing-border); box-shadow: 0 6px 24px -16px rgb(15 23 42 / 0.35); }
.lp-nav__inner { display: flex; align-items: stretch; justify-content: space-between; gap: 20px; height: 74px; }
.lp-nav__brand {
    display: flex; align-items: center; gap: 11px;
    background: var(--landing-primary); color: #fff;
    padding: 0 26px; margin-bottom: -18px; align-self: stretch;
    border-radius: 0 0 22px 22px;
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em;
    box-shadow: 0 12px 24px -14px color-mix(in srgb, var(--landing-primary) 85%, transparent);
}
.lp-nav__brand:hover { color: #fff; }
.lp-nav__brand > i { font-size: 1.4rem; }
.lp-nav__logo { height: 34px; width: auto; object-fit: contain; }
.lp-nav__links { display: flex; align-items: center; gap: 26px; }
.lp-nav__links > a {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--landing-muted-fg); padding: 6px 0; border-bottom: 2px solid transparent;
    transition: color 200ms ease, border-color 200ms ease;
}
.lp-nav__links > a:hover { color: var(--landing-primary); border-bottom-color: var(--landing-accent); }
.lp-nav__actions { display: flex; align-items: center; gap: 10px; }
.lp-nav__toggle {
    display: none; width: 46px; height: 46px; align-self: center;
    align-items: center; justify-content: center;
    background: #fff; border: 1px solid var(--landing-border); border-radius: 12px; font-size: 1.1rem; cursor: pointer;
}

/* ---------- Hero ---------- */
.lp-hero {
    position: relative; min-height: 86vh; display: flex; align-items: center;
    background: linear-gradient(160deg, var(--landing-secondary) 0%, color-mix(in srgb, var(--landing-secondary) 78%, black) 100%);
    overflow: hidden; padding: 120px 0 190px;
}
.lp-hero--sin-tarjetas { padding-bottom: 120px; }
.lp-hero__slides { position: absolute; inset: 0; }
.lp-hero__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 700ms ease; }
.lp-hero__slide.is-active { opacity: 1; visibility: visible; }
.lp-hero__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.lp-hero__slide.is-active img { animation: lp-ken 9s ease-out forwards; }
@keyframes lp-ken { from { transform: scale(1.02); } to { transform: scale(1.16); } }
.lp-hero__scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(100deg, color-mix(in srgb, var(--landing-secondary) 94%, transparent) 0%, color-mix(in srgb, var(--landing-secondary) 72%, transparent) 42%, transparent 78%),
        linear-gradient(to top, color-mix(in srgb, var(--landing-secondary) 92%, transparent) 0%, transparent 55%);
}
.lp-hero__grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(color-mix(in srgb, #fff 12%, transparent) 1.4px, transparent 1.4px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(circle at 78% 26%, black, transparent 62%);
    mask-image: radial-gradient(circle at 78% 26%, black, transparent 62%);
}
.lp-hero__inner { position: relative; z-index: 3; width: 100%; }
.lp-hero__content { max-width: 720px; color: #fff; }
.lp-hero__title { font-size: clamp(2.1rem, 5vw, 3.8rem); font-weight: 800; color: #fff; max-width: 20ch; margin: 22px 0 20px; }
.lp-hero__sub { font-size: 1.1rem; color: rgba(255, 255, 255, 0.85); max-width: 52ch; margin-bottom: 34px; }
.lp-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.lp-hero__anim { opacity: 0; transform: translateY(26px); animation: lp-hero-in 700ms ease forwards; }
.lp-hero__anim:nth-child(2) { animation-delay: 90ms; }
.lp-hero__anim:nth-child(3) { animation-delay: 180ms; }
.lp-hero__anim:nth-child(4) { animation-delay: 270ms; }
@keyframes lp-hero-in { to { opacity: 1; transform: none; } }

.lp-hero__panel { position: absolute; z-index: 4; left: 0; right: 0; bottom: 82px; }
.lp-hero--sin-tarjetas .lp-hero__panel { bottom: 40px; }
.lp-hero__panel-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lp-hero__dots { display: flex; align-items: center; gap: 10px; }
.lp-hero__dot { width: 46px; height: 4px; border-radius: 999px; background: rgba(255, 255, 255, 0.32); cursor: pointer; overflow: hidden; }
.lp-hero__dot span { display: block; height: 100%; width: 0; background: var(--landing-accent); }
.lp-hero__dot.is-active span { animation: lp-progress 7s linear forwards; }
@keyframes lp-progress { from { width: 0; } to { width: 100%; } }
.lp-hero__arrows { display: flex; gap: 10px; }
.lp-hero__arrow {
    width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
    background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff; font-size: 1rem; display: inline-flex; align-items: center; justify-content: center;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.lp-hero__arrow:hover { background: var(--landing-accent); border-color: var(--landing-accent); color: #08312a; }

/* ---------- Tarjetas encabalgadas ---------- */
.lp-overlap { position: relative; z-index: 5; margin-top: -142px; }
.lp-overlap__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    box-shadow: 0 30px 60px -30px rgb(15 23 42 / 0.5); border-radius: 4px; overflow: hidden;
}
.lp-overlap__card { position: relative; min-height: 208px; padding: 34px 30px; overflow: hidden; color: #fff; display: block; }
.lp-overlap__card:hover { color: #fff; }
.lp-overlap__card:nth-child(3n+1) { background: var(--landing-primary); }
.lp-overlap__card:nth-child(3n+2) { background: var(--landing-secondary); }
.lp-overlap__card:nth-child(3n+3) { background: var(--landing-accent); color: #08312a; }
.lp-overlap__card:nth-child(3n+3):hover { color: #08312a; }
.lp-overlap__photo { position: absolute; inset: 0; opacity: 0; transition: opacity 420ms ease, transform 700ms ease; transform: scale(1.08); }
.lp-overlap__photo img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; }
.lp-overlap__card:hover .lp-overlap__photo { opacity: 0.32; transform: scale(1); }
.lp-overlap__body { position: relative; z-index: 2; transition: transform 400ms ease; }
.lp-overlap__card:hover .lp-overlap__body { transform: translateY(-6px); }
.lp-overlap__card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.lp-overlap__card p { font-size: 0.94rem; opacity: 0.88; margin-bottom: 20px; max-width: 26ch; }
.lp-overlap__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.lp-overlap__link i { transition: transform 300ms ease; }
.lp-overlap__card:hover .lp-overlap__link i { transform: translateX(5px); }

/* ---------- Planes ---------- */
.lp-planes { display: grid; grid-template-columns: repeat(auto-fit, minmax(252px, 1fr)); gap: 24px; }
.lp-plan {
    position: relative; background: #fff; border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius); padding: 30px 26px 28px;
    display: flex; flex-direction: column; box-shadow: var(--landing-shadow);
}
.lp-plan__inner { transition: transform 320ms ease; display: flex; flex-direction: column; flex: 1; }
.lp-plan:hover .lp-plan__inner { transform: translateY(-6px); }
.lp-plan--pop { border-color: var(--landing-accent); box-shadow: 0 22px 44px -22px color-mix(in srgb, var(--landing-accent) 65%, transparent); }
.lp-plan__ribbon {
    position: absolute; top: 18px; right: -1px;
    background: var(--landing-accent); color: #08312a;
    font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 999px 0 0 999px;
}
.lp-plan h3 { font-size: 1.2rem; margin-bottom: 6px; }
.lp-plan__desc { color: var(--landing-muted-fg); font-size: 0.9rem; margin-bottom: 20px; }
.lp-plan__vel {
    display: flex; gap: 22px; padding: 16px 0; margin-bottom: 18px;
    border-top: 1px solid var(--landing-border); border-bottom: 1px solid var(--landing-border);
}
.lp-plan__vel > div { display: flex; flex-direction: column; }
.lp-plan__vel i { color: var(--landing-primary); margin-bottom: 6px; font-size: 1rem; }
.lp-plan__vel b { font-weight: 700; font-size: 0.98rem; }
.lp-plan__vel small { color: var(--landing-muted-fg); font-size: 0.76rem; }
.lp-plan__precio { display: flex; align-items: baseline; gap: 6px; margin: 0 0 22px; }
.lp-plan__precio span { font-family: 'Poppins', sans-serif; font-size: 2.1rem; font-weight: 800; }
.lp-plan__precio small { color: var(--landing-muted-fg); font-size: 0.88rem; }
.lp-plan .lp-btn { margin-top: auto; }

/* ---------- La empresa ---------- */
.lp-about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.lp-about--sin-imagen { grid-template-columns: minmax(0, 760px); justify-content: center; text-align: center; }
.lp-about--sin-imagen .lp-about__stat { justify-content: center; }
.lp-about__collage { position: relative; padding-bottom: 68px; padding-right: 48px; }
.lp-about__collage--solo { padding-bottom: 0; padding-right: 0; }
.lp-about__main, .lp-about__mini { background: #fff; padding: 10px; border-radius: 6px; box-shadow: 0 24px 50px -26px rgb(15 23 42 / 0.4); }
.lp-about__main img { border-radius: 3px; aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; }
.lp-about__mini { position: absolute; right: 0; bottom: 0; width: 56%; }
.lp-about__mini img { border-radius: 3px; aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.lp-about__deco {
    position: absolute; left: -26px; top: -26px; width: 130px; height: 130px;
    border: 3px solid color-mix(in srgb, var(--landing-accent) 55%, transparent); border-radius: 18px; z-index: -1;
}
.lp-about h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: 18px; }
.lp-about p { color: var(--landing-muted-fg); margin-bottom: 26px; }
.lp-about__stat {
    display: flex; align-items: center; gap: 16px; padding: 20px 0; margin-bottom: 26px;
    border-top: 1px solid var(--landing-border); border-bottom: 1px solid var(--landing-border);
}
.lp-about__stat strong {
    font-family: 'Poppins', sans-serif; font-size: 2.6rem; font-weight: 800;
    color: var(--landing-accent); line-height: 1; white-space: nowrap;
}
.lp-about__stat > span { font-weight: 600; font-size: 0.95rem; max-width: 28ch; }

/* ---------- Servicios ---------- */
.lp-serv { position: relative; overflow: hidden; padding: 108px 0; color: #fff; background: var(--landing-secondary); }
.lp-serv__bg { position: absolute; inset: -12% 0; }
.lp-serv__bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(2px); }
.lp-serv__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--landing-secondary) 84%, transparent); }
.lp-serv__inner { position: relative; z-index: 2; }
.lp-serv h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); text-align: center; max-width: 22ch; margin: 0 auto 60px; color: #fff; }
.lp-serv__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; text-align: center; }
.lp-serv__grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin: 0 auto; }
.lp-serv__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin: 0 auto; }
.lp-serv__icon { font-size: 2.2rem; color: var(--landing-accent); display: block; margin-bottom: 18px; }
.lp-serv__item h3 { font-size: 1.08rem; margin-bottom: 12px; }
.lp-serv__item p { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; margin-bottom: 18px; }
.lp-serv__more {
    display: inline-flex; align-items: center; gap: 8px; color: var(--landing-accent);
    font-weight: 800; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.lp-serv__more:hover { color: var(--landing-accent); }
.lp-serv__more i { transition: transform 280ms ease; }
.lp-serv__more:hover i { transform: translateX(5px); }

/* ---------- Banner empresarial ---------- */
.lp-ent { position: relative; overflow: hidden; }
.lp-ent__dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(color-mix(in srgb, var(--landing-fg) 9%, transparent) 1.4px, transparent 1.4px);
    background-size: 24px 24px;
    -webkit-mask-image: radial-gradient(circle at 22% 40%, black, transparent 62%);
    mask-image: radial-gradient(circle at 22% 40%, black, transparent 62%);
}
.lp-ent__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 70px; align-items: center; }
.lp-ent__grid--sin-imagen { grid-template-columns: minmax(0, 760px); justify-content: center; text-align: center; }
.lp-ent__grid--sin-imagen p { margin-left: auto; margin-right: auto; }
.lp-ent__media { position: relative; }
.lp-ent__media img { border-radius: 20px; aspect-ratio: 4 / 3.2; object-fit: cover; width: 100%; box-shadow: 0 30px 60px -30px rgb(15 23 42 / 0.5); }
.lp-ent__badge {
    position: absolute; right: -22px; bottom: -28px;
    background: var(--landing-primary); color: #fff;
    border-radius: 18px; padding: 22px 28px; text-align: center;
    box-shadow: 0 22px 44px -20px color-mix(in srgb, var(--landing-primary) 85%, transparent);
}
.lp-ent__badge small { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.86; }
.lp-ent__badge strong { font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 800; line-height: 1.05; display: block; }
.lp-ent__grid h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 18px; }
.lp-ent__grid p { color: var(--landing-muted-fg); margin-bottom: 28px; max-width: 44ch; }

/* ---------- Franja CTA ---------- */
.lp-cta { position: relative; overflow: hidden; background: var(--landing-secondary); padding: 96px 0; text-align: center; color: #fff; }
.lp-cta__waves { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.lp-cta__wave {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%) scale(0.4); border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--landing-accent) 45%, transparent);
    width: 460px; height: 460px; animation: lp-wave 5s ease-out infinite;
}
.lp-cta__wave:nth-child(2) { animation-delay: 1.6s; }
.lp-cta__wave:nth-child(3) { animation-delay: 3.2s; }
@keyframes lp-wave {
    0% { transform: translate(-50%, -50%) scale(0.35); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}
.lp-cta__inner { position: relative; z-index: 2; }
.lp-cta h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: #fff; margin-bottom: 30px; }
.lp-cta__btns { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Por qué elegirnos ---------- */
.lp-feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 22px; }
.lp-feat { background: #fff; border: 1px solid var(--landing-border); border-radius: var(--landing-radius); padding: 28px; }
.lp-feat__inner { transition: transform 320ms ease; }
.lp-feat:hover .lp-feat__inner { transform: translateY(-5px); }
.lp-feat__icon {
    width: 50px; height: 50px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--landing-primary) 12%, transparent);
    color: var(--landing-primary); font-size: 1.2rem; margin-bottom: 18px;
}
.lp-feat h3 { font-size: 1.04rem; margin-bottom: 8px; }
.lp-feat p { color: var(--landing-muted-fg); font-size: 0.92rem; }

/* ---------- Cintillo ---------- */
.lp-marquee { border-top: 1px solid var(--landing-border); border-bottom: 1px solid var(--landing-border); padding: 26px 0; overflow: hidden; background: #fff; }
.lp-marquee__track { display: flex; width: max-content; gap: 60px; animation: lp-marquee 32s linear infinite; }
.lp-marquee:hover .lp-marquee__track { animation-play-state: paused; }
@keyframes lp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.lp-marquee__item {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.02rem;
    color: color-mix(in srgb, var(--landing-fg) 72%, white); white-space: nowrap;
}
.lp-marquee__item i { color: var(--landing-accent); font-size: 1.25rem; }

/* ---------- Preguntas frecuentes ---------- */
.lp-faq { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 64px; align-items: start; }
.lp-faq__aside { position: sticky; top: 110px; }
.lp-faq__aside h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 16px; }
.lp-faq__aside p { color: var(--landing-muted-fg); }
.lp-faq__item { border-bottom: 1px solid var(--landing-border); }
.lp-faq__btn {
    width: 100%; display: flex; align-items: flex-start; gap: 18px; text-align: left;
    cursor: pointer; padding: 24px 4px;
    font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--landing-fg);
}
.lp-faq__btn i { color: var(--landing-primary); font-size: 1.05rem; transition: transform 300ms ease; margin-top: 4px; }
.lp-faq__item.is-open .lp-faq__btn i { transform: rotate(135deg); }
.lp-faq__body { overflow: hidden; height: 0; transition: height 380ms cubic-bezier(0.4, 0, 0.2, 1); }
.lp-faq__body p { color: var(--landing-muted-fg); font-size: 0.95rem; padding: 0 4px 26px 40px; }

/* ---------- Entretenimiento ---------- */
.lp-play { background: color-mix(in srgb, var(--landing-secondary) 88%, black); color: #fff; padding: 96px 0; overflow: hidden; }
.lp-play__grid { display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: 48px; align-items: center; }
.lp-play h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: #fff; margin-bottom: 28px; }
.lp-play__nav { display: flex; gap: 10px; margin-top: 28px; }
.lp-play__nav button {
    width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
    background: transparent; border: 1px solid rgba(255, 255, 255, 0.32); color: #fff; font-size: 1rem;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.lp-play__nav button:hover { background: var(--landing-accent); border-color: var(--landing-accent); color: #08312a; }
.lp-play__rail { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.lp-play__rail::-webkit-scrollbar { display: none; }
.lp-play__card {
    position: relative; flex: 0 0 258px; height: 380px; border-radius: 16px; overflow: hidden;
    scroll-snap-align: start; border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(160deg, var(--landing-primary), color-mix(in srgb, var(--landing-secondary) 85%, black));
}
.lp-play__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.lp-play__card:hover img { transform: scale(1.09); }
.lp-play__card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6, 8, 16, 0.94) 4%, rgba(6, 8, 16, 0.15) 58%, rgba(6, 8, 16, 0.35) 100%);
}
.lp-play__tag {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--landing-accent); color: #08312a;
    font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 6px;
}
.lp-play__meta { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2; }
.lp-play__meta small { display: block; color: rgba(255, 255, 255, 0.66); font-size: 0.78rem; margin-bottom: 4px; }
.lp-play__meta h3 { font-size: 1rem; color: #fff; }

/* ---------- Cobertura ---------- */
.lp-cob { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: center; }
.lp-cob--sin-imagen { grid-template-columns: minmax(0, 760px); justify-content: center; }
.lp-cob h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.lp-cob__intro { color: var(--landing-muted-fg); margin-bottom: 26px; }
.lp-cob__zonas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.lp-cob__zona {
    display: inline-flex; align-items: center; gap: 8px; background: #fff;
    border: 1px solid var(--landing-border); border-radius: 999px; padding: 10px 18px;
    font-size: 0.88rem; font-weight: 600; transition: border-color 200ms ease, color 200ms ease, opacity 200ms ease;
}
.lp-cob__zona i { color: var(--landing-accent); }
.lp-cob__zona:hover { border-color: var(--landing-primary); color: var(--landing-primary); }
.lp-cob__zona.is-hidden { display: none; }
.lp-cob__form { display: flex; gap: 10px; flex-wrap: wrap; }
.lp-cob__form input {
    flex: 1 1 240px; min-height: 48px; padding: 12px 18px;
    border: 1px solid var(--landing-border); border-radius: 999px; font-size: 0.95rem; background: #fff;
}
.lp-cob__aviso { margin-top: 14px; font-size: 0.9rem; font-weight: 600; }
.lp-cob__aviso--ok { color: color-mix(in srgb, var(--landing-accent) 75%, black); }
.lp-cob__aviso--no { color: var(--landing-muted-fg); }
.lp-cob__media img { border-radius: 20px; aspect-ratio: 4 / 3.3; object-fit: cover; width: 100%; box-shadow: 0 28px 56px -28px rgb(15 23 42 / 0.45); }

/* ---------- Área informativa ---------- */
.lp-news__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.lp-news__head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.lp-news__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.lp-news__card { background: #fff; border: 1px solid var(--landing-border); border-radius: var(--landing-radius); overflow: hidden; }
.lp-news__card figure { overflow: hidden; }
.lp-news__card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; transition: transform 620ms ease; }
.lp-news__card:hover img { transform: scale(1.07); }
.lp-news__body { padding: 24px; }
.lp-news__tag { display: inline-block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--landing-muted-fg); margin-bottom: 10px; }
.lp-news__body h3 { font-size: 1.08rem; margin-bottom: 14px; }
.lp-news__body p { color: var(--landing-muted-fg); font-size: 0.92rem; margin-bottom: 14px; }
.lp-news__link { display: inline-flex; align-items: center; gap: 8px; color: var(--landing-primary); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.lp-news__link:hover { color: var(--landing-primary); }

/* ---------- Ubicación ---------- */
.lp-ubi { display: grid; grid-template-columns: minmax(0, 350px) minmax(0, 1fr); gap: 48px; align-items: center; }
.lp-ubi--sin-mapa { grid-template-columns: minmax(0, 640px); justify-content: center; text-align: center; }
.lp-ubi--sin-mapa .lp-ubi__row { justify-content: center; }
.lp-ubi h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom: 20px; }
.lp-ubi__row { display: flex; align-items: flex-start; gap: 12px; color: var(--landing-muted-fg); margin-bottom: 14px; }
.lp-ubi__row i { color: var(--landing-primary); margin-top: 5px; }
.lp-ubi__map { height: 380px; width: 100%; border-radius: var(--landing-radius); box-shadow: var(--landing-shadow); }

/* ---------- Contacto ---------- */
.lp-cont { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: 32px; align-items: stretch; }
.lp-cont__card { background: #fff; border: 1px solid var(--landing-border); border-radius: var(--landing-radius); padding: 36px; box-shadow: var(--landing-shadow); }
.lp-cont__card h2 { font-size: 1.6rem; margin-bottom: 8px; }
.lp-cont__card > p { color: var(--landing-muted-fg); font-size: 0.95rem; margin-bottom: 26px; }
.lp-cont__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lp-field { display: flex; flex-direction: column; gap: 7px; }
.lp-field--full { grid-column: 1 / -1; }
.lp-field label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--landing-muted-fg); margin: 0; }
.lp-field input, .lp-field select, .lp-field textarea {
    border: 1px solid var(--landing-border); border-radius: 12px; padding: 13px 16px;
    font-size: 0.95rem; background: var(--landing-bg-muted); color: var(--landing-fg); width: 100%;
}
.lp-field textarea { resize: vertical; min-height: 118px; }
.lp-field__error { color: #d6336c; font-size: 0.82rem; font-weight: 600; }
.lp-alert {
    display: flex; align-items: flex-start; gap: 12px;
    background: color-mix(in srgb, var(--landing-accent) 14%, #fff);
    border: 1px solid color-mix(in srgb, var(--landing-accent) 45%, transparent);
    color: color-mix(in srgb, var(--landing-accent) 72%, black);
    border-radius: 12px; padding: 14px 18px; margin-bottom: 22px; font-size: 0.93rem; font-weight: 600;
}
.lp-cont__aside { background: var(--landing-primary); color: #fff; border-radius: var(--landing-radius); padding: 36px; }
.lp-cont__aside h3 { font-size: 1.2rem; margin-bottom: 22px; }
.lp-cont__aside li { display: flex; gap: 13px; padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); font-size: 0.92rem; }
.lp-cont__aside li:last-child { border-bottom: 0; }
.lp-cont__aside li i { font-size: 1.05rem; opacity: 0.9; margin-top: 3px; }
.lp-cont__aside strong { display: block; font-family: 'Poppins', sans-serif; }
.lp-cont__aside a:hover { color: #fff; text-decoration: underline; }

/* ---------- Pie de página ---------- */
.lp-footer { background: var(--landing-bg-muted); padding: 76px 0 0; color: var(--landing-muted-fg); font-size: 0.92rem; }
.lp-footer__grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.lp-footer__col + .lp-footer__col { border-left: 1px solid var(--landing-border); padding-left: 40px; }
.lp-footer h4 { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--landing-fg); margin-bottom: 20px; }
.lp-footer__phone { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.lp-footer__phone i { font-size: 2.2rem; color: var(--landing-accent); }
.lp-footer__phone small { display: block; font-size: 0.82rem; }
.lp-footer__phone b { display: block; font-family: 'Poppins', sans-serif; font-size: 1rem; color: var(--landing-fg); }
.lp-footer__block { margin-bottom: 18px; }
.lp-footer__block strong { display: block; color: var(--landing-fg); font-family: 'Poppins', sans-serif; font-size: 0.95rem; margin-bottom: 3px; }
.lp-footer li + li { margin-top: 12px; }
.lp-footer__col a:hover { color: var(--landing-primary); }
.lp-footer__social { display: flex; gap: 8px; margin-top: 20px; }
.lp-footer__social a {
    width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid var(--landing-border);
    display: inline-flex; align-items: center; justify-content: center; color: var(--landing-muted-fg);
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.lp-footer__social a:hover { background: var(--landing-primary); border-color: var(--landing-primary); color: #fff; }
.lp-footer__bar { background: var(--landing-primary); color: rgba(255, 255, 255, 0.86); }
.lp-footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; min-height: 68px; padding: 14px 24px; }
.lp-footer__logo { display: flex; align-items: center; gap: 10px; color: #fff; font-family: 'Poppins', sans-serif; font-weight: 800; }
.lp-footer__logo:hover { color: #fff; }
.lp-footer__logo img { height: 28px; width: auto; }
.lp-footer__legal { display: flex; align-items: center; gap: 20px; font-size: 0.82rem; flex-wrap: wrap; }
.lp-footer__legal a { color: rgba(255, 255, 255, 0.7); }
.lp-footer__legal a:hover { color: #fff; }

/* ---------- WhatsApp flotante ---------- */
.lp-wa { position: fixed; right: 26px; bottom: 26px; z-index: 1500; display: flex; align-items: center; gap: 12px; }
.lp-wa__tip {
    background: #fff; border: 1px solid var(--landing-border); border-radius: 999px;
    padding: 9px 16px; font-size: 0.85rem; font-weight: 600; box-shadow: var(--landing-shadow);
    opacity: 0; transform: translateX(8px); transition: opacity 260ms ease, transform 260ms ease;
}
.lp-wa:hover .lp-wa__tip { opacity: 1; transform: translateX(0); }
.lp-wa__btn {
    position: relative; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff;
    display: inline-flex; align-items: center; justify-content: center; font-size: 1.7rem;
    box-shadow: 0 14px 30px -12px rgba(37, 211, 102, 0.9);
}
.lp-wa__btn:hover { color: #fff; }
.lp-wa__btn::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: lp-pulse 2.4s ease-out infinite; }
@keyframes lp-pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .lp-nav__links > a { display: none; }
    .lp-nav__toggle { display: inline-flex; }
    .lp-nav__links {
        position: absolute; top: 74px; left: 0; right: 0; background: #fff;
        flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 22px;
        border-bottom: 1px solid var(--landing-border); box-shadow: 0 16px 30px -18px rgb(15 23 42 / 0.3); display: none;
    }
    .lp-nav__links.is-open { display: flex; }
    .lp-nav__links.is-open > a { display: block; padding: 15px 2px; border-bottom: 1px solid var(--landing-border); }
    .lp-nav__actions { flex-direction: column; align-items: stretch; margin-top: 14px; }
    .lp-nav__actions .lp-btn { width: 100%; }
    .lp-serv__grid, .lp-serv__grid--3 { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
    .lp-about, .lp-ent__grid, .lp-faq, .lp-cob, .lp-ubi, .lp-cont, .lp-play__grid { grid-template-columns: 1fr; gap: 44px; }
    .lp-faq__aside { position: static; }
    .lp-footer__grid { grid-template-columns: 1fr 1fr; }
    .lp-footer__col + .lp-footer__col { border-left: 0; padding-left: 0; }
}

@media (max-width: 720px) {
    .lp-section { padding: 68px 0; }
    .lp-hero { min-height: 70vh; padding: 92px 0 150px; }
    .lp-hero__panel { bottom: 60px; }
    .lp-overlap { margin-top: -70px; }
    .lp-overlap__grid { grid-template-columns: 1fr; }
    .lp-serv__grid, .lp-serv__grid--3, .lp-serv__grid--2 { grid-template-columns: 1fr; }
    .lp-ent__badge { right: 12px; bottom: -20px; padding: 16px 20px; }
    .lp-ent__badge strong { font-size: 2rem; }
    .lp-cont__grid { grid-template-columns: 1fr; }
    .lp-cont__card, .lp-cont__aside { padding: 26px; }
    .lp-footer__grid { grid-template-columns: 1fr; gap: 34px; }
    .lp-about__collage { padding-right: 0; }
    .lp-about__mini { width: 66%; right: -8px; }
    .lp-wa { right: 16px; bottom: 16px; }
    .lp-wa__tip { display: none; }
}
