/* =============== GOOGLE FONTS ================== */
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Poppins:wght@400;500;600;700;800;900&display=swap');
/* Credit - youtube.com/@ashutoshpython  */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: auto;
    overflow-anchor: none;
}

html, body {
    width: 100%;
    min-height: 100%;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    overflow-anchor: none;
    background: #fff;
    position: relative;
}

body.nav-open,
body.ec-exit-open,
body.ec-welcome-open {
    overflow: hidden;
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 28, 53, 0.38);
    z-index: 150;
    border: none;
    padding: 0;
    margin: 0;
}

body.nav-open .nav-backdrop {
    display: block;
}

/*
 * Móvil: el backdrop es hermano de .page-wrap y queda por encima del stacking de #main (z-index: 1),
 * así que interceptaba los clics del drawer. Recortamos el overlay para no cubrir la franja del menú.
 */
@media (max-width: 768px) {
    :root {
        --nav-drawer-width: min(320px, 88vw);
    }

    body.nav-open .nav-backdrop {
        clip-path: inset(0 var(--nav-drawer-width) 0 0);
        -webkit-clip-path: inset(0 var(--nav-drawer-width) 0 0);
    }
}

#main {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 0 clamp(32px, 6vw, 48px);
    position: relative;
    z-index: 1;
    background: transparent;
}

.page-wrap {
    position: relative;
    min-height: 0;
}

.hero-viewport {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-viewport__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: max(calc(env(safe-area-inset-top, 0px) + 4.35rem), 4.65rem)
        clamp(16px, 4vw, 24px) 0;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.site-rest {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0 clamp(16px, 4vw, 24px);
    box-sizing: border-box;
}

/* Capa visual: solo dentro del hero (no acompaña al scroll global) */
#right-area {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(64vw, 1040px);
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background-color: transparent;
}

/* Bloque guinda + overlays: misma caja para alinear hamburguesa al centro del PNG */
#right-area .right-hero-visual {
    position: absolute;
    inset: 0;
    transform: translateX(10%);
    pointer-events: none;
}

/* Fondo orgánico guinda: mismo rectángulo que .landing-imgs */
#right-area .right-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
}

#right-area .landing-imgs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Hamburguesa: centrada en el mismo rectángulo que la imagen guinda */
#right-area .hero-burger-stack {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

#right-area .hero-burger-stack .hero-burger-img {
    display: block;
    width: auto;
    height: auto;
    /* Ancho del bloque; el tamaño visible lo marca scale (si no, 100% ya llena y no crece) */
    max-width: min(100%, 2400px);
    max-height: min(100dvh, 140vh, 1800px);
    object-fit: contain;
    object-position: center;
    transform-origin: center center;
    animation: heroBurgerFloat 7s ease-in-out infinite;
}

/* discount.png — animación CSS (transform); id aumenta especificidad frente a otros resets */
#right-area .landing-imgs #hero-discount-wrap.hero-discount-wrap {
    position: absolute;
    top: clamp(4%, 7vh, 10%);
    right: clamp(6%, 10vw, 14%);
    bottom: auto;
    left: auto;
    z-index: 5;
    line-height: 0;
    transform-origin: center center;
    animation: heroDiscountPromo 2.65s ease-in-out infinite !important;
}

#right-area .landing-imgs .hero-discount-img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(22vw, 200px);
    object-fit: contain;
}

.layout-main {
    width: 50%;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

/* Solo visible en ≤768px (reglas en ese media query); oculto en escritorio */
.hero-burger-mobile {
    display: none;
}

h1{
    font-family: 'Lobster', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 15px;
}

.brand-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin: 0;
    line-height: 1.1;
}

nav.site-nav .brand-title {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.55))
        drop-shadow(0 1px 2px rgba(255, 255, 255, 0.45));
}

nav.site-nav {
    width: 100%;
    max-width: 1140px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    min-height: 74px;
    gap: clamp(1rem, 4vw, 80px);
    position: absolute;
    top: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 210;
    padding-top: max(env(safe-area-inset-top, 0px), 0px);
    padding-bottom: 0.35rem;
    padding-inline: clamp(16px, 4vw, 24px);
    box-sizing: border-box;
    background: transparent;
    border: none;
    pointer-events: auto;
}

nav.site-nav a {
    text-decoration: none;
    padding-right: clamp(12px, 2vw, 25px);
    font-size: clamp(15px, 1.8vw, 16px);
    font-weight: 500;
    line-height: 24px;
    color: #071c35;
    transition: color 0.35s ease;
    text-shadow:
        0 0 1px rgba(255, 255, 255, 0.95),
        0 0 12px rgba(255, 255, 255, 0.45),
        0 1px 2px rgba(255, 255, 255, 0.85);
}

nav.site-nav .menu-items a:first-of-type {
    color: #ee2737;
}

nav.site-nav a:hover {
    color: #ee2737;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    margin-left: auto;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #071c35;
    font-size: 1.35rem;
    border-radius: 8px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.75))
        drop-shadow(0 1px 1px rgba(255, 255, 255, 0.6));
}

.nav-toggle:focus-visible {
    outline: 2px solid #ee2737;
    outline-offset: 3px;
}

.menu-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.menu-items a.menu-items__link--mobile-only {
    display: none;
}

.menu-items__drawer-head {
    display: none;
}

/* Escala real: antes solo pegaba al ancho del panel y parecía no crecer */
@keyframes heroBurgerFloat {
    0%,
    100% {
        transform: translateY(0) scale(1.37);
    }
    25% {
        transform: translateY(-14px) scale(1.37);
    }
    50% {
        transform: translateY(-8px) scale(1.37);
    }
    75% {
        transform: translateY(-14px) scale(1.37);
    }
}

@keyframes heroDiscountPromo {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
    20% {
        transform: translate3d(14px, -16px, 0) rotate(-6deg) scale(1.07);
    }
    40% {
        transform: translate3d(-12px, 12px, 0) rotate(6deg) scale(1.12);
    }
    60% {
        transform: translate3d(12px, 14px, 0) rotate(-5deg) scale(1.05);
    }
    80% {
        transform: translate3d(-14px, -10px, 0) rotate(4deg) scale(1.09);
    }
}

/* Con movimiento reducido: solo levita un poco (sin frenar con transform:none) */
@keyframes heroDiscountPromoReduced {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
}

#left-area {
    width: 100%;
    margin-top: clamp(6px, 2vw, 18px);
}

#left-area h1 {
    font-family: 'Lobster', sans-serif;
    font-size: clamp(2.25rem, 7vw, 60px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
}

@media (min-width: 769px) {
    #left-area h1 {
        font-size: 68px;
        line-height: 1.18;
        margin-bottom: clamp(1rem, 1.9vw, 1.35rem);
    }

    #left-area {
        margin-top: clamp(8px, 2.5vw, 22px);
    }

    .lp-cta-row--hero {
        margin-top: clamp(0.45rem, 1.35vw, 0.75rem);
    }

    .micro-note {
        margin-top: clamp(0.95rem, 1.9vw, 1.35rem) !important;
    }

    .icons {
        margin-top: clamp(26px, 4.2vw, 44px);
    }
}

#left-area h1::selection {
    color: #fff;
    background-color: #ee2737;
}

span {
    font-family: 'Lobster', sans-serif;
    color: #ee2737;
}

span::selection {
    color: #fff;
    background-color: #ee2737;
}

#left-area p {
    font-size: clamp(16px, 2.2vw, 18px);
    color: #666;
    max-width: 52ch;
}

#left-area p:not(.micro-note) {
    margin-bottom: clamp(1.65rem, 3.2vw, 2.35rem);
}

#left-area p::selection {
    color: #fff;
    background-color: #ee2737;
}

.micro-note {
    font-size: 0.95rem !important;
    color: #555 !important;
    margin-bottom: 0 !important;
    margin-top: clamp(0.85rem, 1.8vw, 1.2rem) !important;
    line-height: 1.5;
}

/* Tarjetas de iconos solo móvil (la fila .icons se oculta ≤768px) */
.hero-mobile-icon-cards {
    display: none;
}

.bottom-strip {
    margin-top: 2rem;
    padding: 1.25rem 0 0;
    border-top: 1px solid rgba(7, 28, 53, 0.08);
    display: grid;
    gap: 0.85rem;
}

.bottom-strip p {
    font-size: clamp(0.88rem, 2.4vw, 0.95rem);
    color: #555;
    line-height: 1.5;
}

.bottom-strip strong {
    color: #071c35;
}

.icons {
    display: flex;
    margin-top: clamp(26px, 4.5vw, 46px);
    gap: clamp(10px, 2vw, 20px);
    flex-wrap: wrap;
}

.icons .icon-box {
    width: 78px;
    height: 78px;
    min-width: 48px;
    min-height: 48px;
    border: none;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(238, 39, 55, 0.1);
    transition: 0.5s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.icons .icon-box:hover {
    background-color: #ee2737;
}

.icons .icon-box:hover .fa-solid {
    color: #fff;
    transition: 0.5s ease;
}

.icons .icon-box .fa-solid {
    font-size: clamp(24px, 5vw, 30px);
    color: #ee2737;
}

/* ========== TABLET (layout only; imágenes igual que escritorio hasta 768px) ========== */
@media (max-width: 992px) {
    .layout-main {
        width: 52%;
    }
}

/* ========== MOBILE MENU + STACK ========== */
@media (max-width: 768px) {
    .page-wrap {
        display: block;
    }

    #right-area {
        display: none !important;
    }

    .hero-viewport {
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
    }

    .hero-viewport__inner {
        padding-inline: 0;
        max-width: none;
        padding-top: max(
            calc(env(safe-area-inset-top, 0px) + 3.35rem),
            3.65rem
        );
    }

    .site-rest {
        padding-inline: var(--m-pad-x);
        padding-bottom: 0;
        margin-bottom: 0;
    }

    #main {
        --m-pad-x: clamp(15px, 4vw, 22px);
        --m-tight: clamp(0.52rem, 1.9vw, 0.74rem);
        --m-block: clamp(1.06rem, 3.45vw, 1.38rem);
        --m-hero-img-bottom: calc(var(--m-block) * 1.58 + var(--m-tight) * 1.15);
        --m-title-to-copy: calc(var(--m-block) * 0.9);
        --m-copy-to-cta: calc(var(--m-block) * 1.28 + var(--m-tight) * 1.05);
        --m-cta-to-note: calc(var(--m-block) * 1);

        max-width: none;
        width: 100%;
        padding: 0;
        padding-bottom: 0;
    }

    nav.site-nav {
        gap: 0.75rem;
        min-height: auto;
        left: var(--m-pad-x);
        right: var(--m-pad-x);
        width: auto;
        max-width: none;
        transform: none;
        padding-top: max(
            var(--m-tight),
            env(safe-area-inset-top, 0px)
        );
        padding-right: 0;
        padding-bottom: calc(var(--m-tight) + 0.18rem);
        padding-left: 0;
        /* Barra de navegación por encima del contenido del hero y del backdrop al abrir el cajón */
        z-index: 380;
    }

    .menu-items a.menu-items__link--mobile-only {
        display: block;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .menu-items__drawer-head {
        display: block;
        flex-shrink: 0;
        text-align: center;
        margin: 0 0 0.35rem;
        /* Notch / Dynamic Island: mismo criterio que viewport-fit=cover */
        padding: calc(env(safe-area-inset-top, 0px) + 0.75rem) 0 1rem;
        border-bottom: 1px solid rgba(7, 28, 53, 0.08);
    }

    .menu-items__drawer-logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        /* Anula nav.site-nav a (gris + sombra para hero): color de marca Brasa Norte */
        color: #ee2737;
        text-shadow: none;
        padding-right: 0;
        font-size: inherit;
        font-weight: inherit;
        line-height: inherit;
    }

    nav.site-nav .menu-items .menu-items__drawer-logo:hover {
        color: #c91f2d;
    }

    /* Misma marca que el h1 del nav: Lobster + efecto emboss (el <p> no heredaba Lobster del selector h1) */
    .menu-items__drawer-logo-text {
        font-family: 'Lobster', cursive, sans-serif;
        font-size: clamp(1.55rem, 5.2vw, 2rem);
        font-weight: 400;
        line-height: 1.1;
        margin: 0;
        color: #ee2737;
        display: inline-block;
        text-shadow: none;
        filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.98))
            drop-shadow(0 2px 10px rgba(7, 28, 53, 0.1));
    }

    .menu-items {
        position: fixed;
        top: 0;
        right: 0;
        width: var(--nav-drawer-width, min(320px, 88vw));
        height: 100dvh;
        max-height: 100vh;
        background: #fff;
        box-shadow: -8px 0 32px rgba(7, 28, 53, 0.12);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0 1.35rem 2rem;
        gap: 0;
        transform: translateX(104%);
        transition: transform 0.3s ease;
        /* Por encima del backdrop (150) y del resto del hero (#main z-index bajo) */
        z-index: 400;
        pointer-events: auto;
    }

    .menu-items.is-open {
        transform: translateX(0);
    }

    .menu-items a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(7, 28, 53, 0.08);
        font-size: 1.1rem;
        padding-right: 0;
    }

    .menu-items a:first-of-type {
        color: #071c35;
    }

    .layout-main {
        width: 100%;
        max-width: none;
        display: flex;
        flex-direction: column;
        gap: var(--m-block);
        padding-left: var(--m-pad-x);
        padding-right: var(--m-pad-x);
        padding-top: calc(var(--m-tight) * 1.12);
        padding-bottom: calc(var(--m-tight) * 1.05);
        flex: 1 1 auto;
        min-height: 0;
    }

    #left-area {
        margin-top: 0;
        width: 100%;
        max-width: none;
    }

    #left-area h1 {
        margin-top: 0;
        margin-bottom: var(--m-title-to-copy);
        text-align: center;
        line-height: 1.08;
        font-size: clamp(2.55rem, 8.6vw, 3.2rem);
    }

    /* Hamburguesa centrada encima del titular (solo móvil/tableta ≤768px) */
    .hero-burger-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto var(--m-hero-img-bottom);
        padding-bottom: 0;
        line-height: 0;
    }

    .hero-burger-mobile img {
        display: block;
        width: auto;
        height: auto;
        max-width: min(82vw, 300px);
        max-height: min(26vh, 240px);
        object-fit: contain;
        object-position: center;
        transform: scale(1.22);
        transform-origin: center center;
    }

    #left-area p:not(.micro-note) {
        max-width: none;
        margin-top: 0;
        margin-bottom: var(--m-copy-to-cta);
        font-size: clamp(14px, 3.6vw, 16px);
        line-height: 1.48;
    }

    #left-area .lp-cta-row--hero.lp-cta-row--left {
        text-align: center;
    }

    #left-area .lp-cta-row--hero {
        margin-top: calc(var(--m-tight) * 0.85);
        margin-bottom: var(--m-cta-to-note);
    }

    #left-area .lp-cta-row--hero .lp-btn {
        padding: 11px 18px;
        min-height: 44px;
        font-size: 15px;
    }

    .micro-note {
        display: none !important;
    }

    .hero-mobile-icon-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.62rem;
        width: 100%;
        max-width: none;
        margin-top: 0.85rem;
        margin-bottom: 0.15rem;
        padding: 0;
    }

    .hero-mobile-icon-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.42rem;
        min-height: 86px;
        padding: 0.68rem 0.45rem;
        border-radius: 10px;
        background-color: rgba(238, 39, 55, 0.1);
        border: 1px solid rgba(238, 39, 55, 0.14);
        text-align: center;
    }

    .hero-mobile-icon-card__icon .fa-solid {
        font-size: 1.32rem;
        color: #ee2737;
    }

    .hero-mobile-icon-card__label {
        font-size: 0.72rem;
        font-weight: 600;
        color: #071c35;
        line-height: 1.2;
        letter-spacing: 0.01em;
    }

    /* Barra tipo app al pie; contacto/CDMX ocultos en móvil */
    .bottom-strip {
        display: none !important;
    }

    .icons {
        display: none !important;
    }

    .lp-footer__mobile-end {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
        min-height: 0;
    }

    .lp-footer__mobile-end .lp-footer__legal {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        min-height: 0;
        padding-top: 0.75rem;
        gap: 0.35rem;
    }

    .lp-footer__mobile-end .lp-footer__legal p {
        text-align: center;
    }

    .lp-footer__order-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
        min-height: 48px;
        margin-top: 0.35rem;
        margin-bottom: 0;
        padding: 0.55rem clamp(12px, 4vw, 20px);
        box-sizing: border-box;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        background-color: #ee2737;
        color: #fff;
        font-size: 0.98rem;
        font-weight: 600;
        font-family: inherit;
        text-decoration: none;
        text-align: center;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
        box-shadow: 0 -4px 16px rgba(7, 28, 53, 0.1);
        -webkit-tap-highlight-color: transparent;
    }

    .lp-footer__order-bar:active {
        background-color: #c91f2d;
        color: #fff;
    }

    .lp-footer__order-bar:focus-visible {
        outline: 3px solid #071c35;
        outline-offset: -3px;
    }

    .lp-footer__final-cta {
        display: none !important;
    }
}

@media (max-width: 480px) {
    #main {
        --m-pad-x: 12px;
        --m-tight: 0.48rem;
        --m-block: clamp(0.9rem, 3.25vw, 1.18rem);
        padding-bottom: 0;
    }

    #left-area h1 {
        font-size: clamp(2.4rem, 9.4vw, 3.05rem);
        line-height: 1.07;
    }

    .hero-burger-mobile img {
        max-width: min(88vw, 268px);
        max-height: min(24vh, 200px);
        transform: scale(1.15);
    }

    #left-area .lp-cta-row--hero .lp-btn {
        min-width: 0;
        width: 100%;
        max-width: 20rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    #right-area .hero-burger-stack .hero-burger-img {
        animation: none !important;
        transform: scale(1.37) !important;
    }

    /* Rebasa la regla * de arriba: el badge sigue animándose en modo suave */
    #right-area .landing-imgs #hero-discount-wrap.hero-discount-wrap {
        animation: heroDiscountPromoReduced 3.5s ease-in-out infinite !important;
    }

    @media (max-width: 768px) {
        #right-area .hero-burger-stack .hero-burger-img {
            transform: scale(1.27) !important;
        }
    }
}

/* ========== Landing conversion (post-hero) ========== */
.lp-section {
    padding: clamp(2rem, 5vw, 3.25rem) 0;
    scroll-margin-top: 1rem;
}

.lp-section__head {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}

.lp-section__head--left {
    text-align: left;
    margin-left: 0;
}

.lp-h2 {
    font-family: 'Lobster', sans-serif;
    font-size: clamp(1.75rem, 4.5vw, 2.35rem);
    font-weight: 400;
    color: #071c35;
    line-height: 1.15;
    margin: 0 0 0.65rem;
}

.lp-h3 {
    font-size: clamp(1rem, 2.4vw, 1.15rem);
    font-weight: 600;
    color: #071c35;
    margin: 0 0 0.4rem;
}

.lp-lead {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    color: #666;
    line-height: 1.55;
    margin: 0;
}

.lp-grid {
    display: grid;
    gap: clamp(0.9rem, 2.5vw, 1.25rem);
}

.lp-grid--reviews {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Carrusel de reseñas: solo se activa en ≤768px (ver otro @media más abajo). En escritorio el wrapper no afecta el layout. */
.lp-reviews-carousel {
    display: contents;
}

@media (max-width: 768px) {
    .lp-reviews-carousel {
        display: block;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .lp-reviews-carousel__track.lp-grid--reviews {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: clamp(0.75rem, 3vw, 1rem);
        grid-template-columns: none;
        margin: 0;
        padding: 0 var(--m-pad-x, clamp(15px, 4vw, 22px));
        overflow-x: auto;
        overflow-y: hidden;
        touch-action: pan-x;
        width: 100%;
        max-width: 100%;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        position: relative;
    }

    .lp-reviews-carousel__track.lp-grid--reviews::-webkit-scrollbar {
        display: none;
    }

    .lp-reviews-carousel__track .lp-review-card {
        flex: 0 0 min(22.5rem, calc(100vw - var(--m-pad-x, 15px) * 2 - 1.25rem));
        max-width: min(22.5rem, calc(100vw - var(--m-pad-x, 15px) * 2 - 1.25rem));
        scroll-snap-align: start;
        scroll-snap-stop: normal;
        box-sizing: border-box;
    }

    @media (prefers-reduced-motion: reduce) {
        .lp-reviews-carousel__track.lp-grid--reviews {
            scroll-behavior: auto;
        }
    }
}

.lp-grid--value {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lp-grid--products {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.lp-grid--promos {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.lp-grid--extras {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.lp-card {
    background: #fff;
    border: 1px solid rgba(7, 28, 53, 0.08);
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(7, 28, 53, 0.06);
    padding: clamp(1rem, 3vw, 1.25rem);
}

.lp-review-card__top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.lp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.lp-review-card__name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #071c35;
    margin: 0;
}

.lp-review-card__meta {
    font-size: 0.78rem;
    color: #888;
    margin: 0.1rem 0 0;
}

.lp-review-card__text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.lp-social__rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.6rem;
    margin-top: 0.75rem;
    font-weight: 600;
    color: #071c35;
}

.lp-stars {
    color: #ee2737;
    letter-spacing: 0.06em;
    font-size: 1.05rem;
}

.lp-rating-num {
    font-size: 1.2rem;
}

.lp-rating-meta {
    font-size: 0.88rem;
    font-weight: 500;
    color: #666;
}

.lp-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(238, 39, 55, 0.1);
    margin-bottom: 0.75rem;
    transition: background-color 0.35s ease, color 0.35s ease;
}

.lp-icon-box .fa-solid {
    font-size: 1.35rem;
    color: #ee2737;
}

.lp-icon-box--lg {
    width: 72px;
    height: 72px;
    margin-bottom: 0.85rem;
}

.lp-icon-box--lg .fa-solid {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
}

.lp-value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lp-value-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .lp-value-card--desktop-only {
        display: none !important;
    }
}

.lp-product-card {
    background: #fff;
    border: 1px solid rgba(7, 28, 53, 0.08);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(7, 28, 53, 0.07);
    display: flex;
    flex-direction: column;
}

.lp-product-card__media {
    aspect-ratio: 600 / 400;
    overflow: hidden;
    background: #f3f3f3;
}

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

.lp-product-card__body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.lp-product-card__body p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.45;
    margin: 0;
    flex: 1;
}

.lp-product-card__body .lp-btn {
    align-self: center;
    margin-top: 0.35rem;
}

.lp-promo-card {
    position: relative;
    background: #fff;
    border: 2px solid rgba(238, 39, 55, 0.35);
    border-radius: 6px;
    padding: clamp(1.1rem, 3vw, 1.35rem);
    box-shadow: 0 8px 32px rgba(238, 39, 55, 0.12);
}

.lp-promo-card--accent {
    background: linear-gradient(
        160deg,
        rgba(238, 39, 55, 0.08) 0%,
        #fff 38%
    );
    border-color: #ee2737;
}

.lp-badge {
    display: inline-block;
    background: #ee2737;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.28rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 0.65rem;
}

.lp-promo-card .lp-h3 {
    margin-bottom: 0.35rem;
}

.lp-promo-card p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.45;
    margin: 0 0 0.85rem;
}

.lp-promo-card .lp-btn {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.lp-promo-visual {
    margin-top: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(7, 28, 53, 0.08);
    box-shadow: 0 6px 28px rgba(7, 28, 53, 0.08);
}

.lp-promo-visual img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 800 / 360;
    object-fit: cover;
}

.lp-coverage__split {
    display: grid;
    gap: clamp(1.25rem, 4vw, 2rem);
    align-items: start;
}

.lp-zone-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.lp-zone-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(7, 28, 53, 0.08);
    font-size: 0.9rem;
    color: #555;
    line-height: 1.45;
}

.lp-zone-list strong {
    color: #071c35;
}

.lp-coverage__media {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(7, 28, 53, 0.08);
    box-shadow: 0 8px 32px rgba(7, 28, 53, 0.1);
}

.lp-coverage__map {
    position: relative;
    width: 100%;
    aspect-ratio: 800 / 400;
    min-height: clamp(200px, 42vw, 360px);
    background: rgba(7, 28, 53, 0.06);
}

.lp-coverage__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.lp-coverage__map-note {
    margin: 0.55rem 0 0;
    font-size: 0.78rem;
    color: #666;
    line-height: 1.4;
    padding: 0 0.15rem;
}

.lp-steps-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 56rem;
    display: flex;
    flex-direction: column;
    gap: clamp(1.1rem, 3vw, 1.5rem);
}

.lp-step {
    background: #fff;
    border: 1px solid rgba(7, 28, 53, 0.08);
    border-radius: 6px;
    padding: clamp(1rem, 3vw, 1.25rem);
    box-shadow: 0 4px 20px rgba(7, 28, 53, 0.06);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.lp-step .lp-icon-box {
    margin-bottom: 0;
}

.lp-step .lp-h3 {
    margin-bottom: 0.35rem;
}

.lp-step p {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.45;
}

@media (min-width: 769px) {
    .lp-steps-list {
        flex-direction: row;
        align-items: stretch;
    }

    .lp-step {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lp-step .lp-icon-box {
        margin-bottom: 0.85rem;
    }

    .lp-step p {
        margin-top: auto;
        max-width: 28ch;
    }

    .lp-coverage__split {
        grid-template-columns: 1fr minmax(280px, 42%);
        align-items: center;
    }
}

.lp-compare-table-wrap {
    overflow-x: auto;
    margin-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.lp-compare-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 0.88rem;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(7, 28, 53, 0.08);
    border: 1px solid rgba(7, 28, 53, 0.08);
}

.lp-compare-table th,
.lp-compare-table td {
    padding: 0.75rem 0.85rem;
    text-align: left;
    border-bottom: 1px solid rgba(7, 28, 53, 0.08);
    color: #555;
    vertical-align: top;
}

.lp-compare-table thead th {
    background: rgba(238, 39, 55, 0.08);
    color: #071c35;
    font-weight: 600;
    font-size: 0.85rem;
}

.lp-compare-table tbody th[scope='row'] {
    color: #071c35;
    font-weight: 600;
    background: rgba(7, 28, 53, 0.03);
    white-space: nowrap;
}

.lp-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .lp-compare-table-wrap {
        overflow-x: visible;
        -webkit-overflow-scrolling: auto;
    }

    .lp-compare-table {
        min-width: 0;
        width: 100%;
        display: block;
        border: none;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    .lp-compare-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip-path: inset(50%);
        white-space: nowrap;
        border: 0;
    }

    .lp-compare-table tbody {
        display: block;
    }

    .lp-compare-table tbody tr {
        display: block;
        margin-bottom: clamp(0.75rem, 2.5vw, 0.95rem);
        border: 1px solid rgba(7, 28, 53, 0.1);
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 20px rgba(7, 28, 53, 0.06);
    }

    .lp-compare-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .lp-compare-table tbody th[scope='row'] {
        display: block;
        width: 100%;
        box-sizing: border-box;
        white-space: normal;
        background: rgba(238, 39, 55, 0.1);
        color: #071c35;
        font-weight: 700;
        font-size: 0.9rem;
        padding: 0.65rem 0.85rem;
        border-bottom: 1px solid rgba(7, 28, 53, 0.08);
        text-align: center;
    }

    .lp-compare-table tbody td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 0.7rem 0.85rem 0.75rem;
        border-bottom: 1px solid rgba(7, 28, 53, 0.06);
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .lp-compare-table tbody td:last-child {
        border-bottom: none;
        padding-bottom: 0.85rem;
    }

    .lp-compare-table tbody td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.68rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.045em;
        color: #ee2737;
        margin-bottom: 0.35rem;
        line-height: 1.25;
    }
}

.lp-check {
    color: #ee2737;
    margin-right: 0.25rem;
}

/* === Tabla comparativa: marcar conceptos de "Apps agregadoras" como NO recomendable ===
   El <span class="lp-no"> hereda EXPLÍCITAMENTE fuente, color, peso y tamaño del
   <td> padre — así se ve idéntico al texto de la columna ganadora. La ÚNICA
   diferencia visual es el line-through, cuya línea toma el mismo color del texto
   (currentColor) para que la coherencia tipográfica sea total.
   Aplica igual en desktop y móvil; el ::before (label móvil) queda intocado.
*/
.lp-compare-table .lp-no {
    color: inherit;
    font: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-decoration: line-through;
    text-decoration-color: currentColor;
    text-decoration-thickness: 1.5px;
    text-decoration-skip-ink: none;
}

.lp-extra-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lp-extra-card__media {
    aspect-ratio: 600 / 380;
    overflow: hidden;
    background: #eee;
}

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

.lp-extra-card .lp-h3,
.lp-extra-card p {
    padding: 0 1rem;
}

.lp-extra-card .lp-h3 {
    margin-top: 1rem;
}

.lp-extra-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.45;
    margin: 0 0 1rem;
    flex: 1;
}

.lp-extra-card .lp-btn {
    margin: 0 1rem 1.1rem;
    align-self: center;
}

.lp-faq__list {
    max-width: 42rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-faq__item {
    background: #fff;
    border: 1px solid rgba(7, 28, 53, 0.1);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(7, 28, 53, 0.05);
}

.lp-faq__item summary {
    padding: 0.95rem 1rem;
    font-weight: 600;
    color: #071c35;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.lp-faq__item summary::-webkit-details-marker {
    display: none;
}

.lp-faq__item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: #ee2737;
    line-height: 1;
}

.lp-faq__item[open] summary::after {
    content: '−';
}

.lp-faq__item p {
    padding: 0 1rem 1rem;
    margin: 0;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.55;
}

.lp-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    text-align: center;
    margin: clamp(1.25rem, 3vw, 1.75rem) 0 0;
}

.lp-cta-row--left {
    text-align: center;
}

.lp-cta-row--hero {
    margin-top: clamp(0.4rem, 1.35vw, 0.75rem);
    margin-bottom: 0;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease,
        box-shadow 0.35s ease, transform 0.25s ease;
    border: 1px solid #ee2737;
}

.lp-btn:focus-visible {
    outline: 2px solid #071c35;
    outline-offset: 3px;
}

.lp-btn--primary {
    background-color: #ee2737;
    color: #fff;
    box-shadow: 0px 5px 30px 0px rgba(238, 39, 55, 0.2);
    min-width: min(100%, 13.75rem);
}

.lp-btn--primary:hover {
    background-color: transparent;
    color: #ee2737;
}

.lp-btn--ghost {
    background-color: #fff;
    color: #ee2737;
}

.lp-btn--ghost:hover {
    background-color: #ee2737;
    color: #fff;
}

.lp-anchor {
    display: block;
    position: relative;
    width: 0;
    height: 0;
    scroll-margin-top: 1.25rem;
    pointer-events: none;
}

.lp-footer {
    margin-top: clamp(0.5rem, 2vw, 1rem);
    padding: clamp(2rem, 5vw, 3rem) 0 clamp(2rem, 6vw, 3.5rem);
    background: linear-gradient(180deg, rgba(7, 28, 53, 0.04) 0%, #fff 18%);
    border-top: 1px solid rgba(7, 28, 53, 0.1);
}

.lp-footer__inner {
    max-width: 100%;
}

.lp-footer__logo {
    font-family: 'Lobster', cursive, sans-serif;
    font-size: clamp(1.65rem, 4vw, 2rem);
    margin: 0 0 0.25rem;
}

.lp-footer__tagline {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.5rem;
}

.lp-footer__about {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.55;
    margin: 0 0 1.5rem;
    max-width: 28rem;
}

.lp-footer__service-note {
    margin: 1rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(7, 28, 53, 0.06);
    font-size: 0.74rem;
    color: #888;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.lp-footer__service-note strong {
    color: #071c35;
    font-weight: 600;
}

@media (max-width: 768px) {
    .lp-footer__about {
        margin-bottom: 1rem;
        font-size: 0.82rem;
    }

    .lp-footer__service-note {
        margin-top: 0.85rem;
        padding-top: 0.75rem;
        font-size: 0.7rem;
    }
}

.lp-footer__cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 1.75rem;
}

.lp-footer__h {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ee2737;
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.lp-footer__col p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.lp-footer__small {
    font-size: 0.78rem !important;
    color: #888 !important;
    margin-top: 0.35rem !important;
}

.lp-footer__tel {
    display: inline-block;
    font-weight: 600;
    color: #071c35;
    text-decoration: none;
    font-size: 0.95rem;
}

.lp-footer__tel:hover {
    color: #ee2737;
}

.lp-footer__social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-footer__social li {
    margin-bottom: 0.4rem;
}

.lp-footer__social a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
}

.lp-footer__social a:hover {
    color: #ee2737;
}

.lp-footer__legal {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(7, 28, 53, 0.08);
    font-size: 0.78rem;
    color: #777;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    justify-content: space-between;
    align-items: center;
}

.lp-footer__legal p {
    margin: 0;
}

.lp-footer__legal a {
    color: #071c35;
}

.lp-footer__final-cta {
    margin-top: 1.5rem;
}

@media (min-width: 769px) {
    .lp-footer__mobile-end {
        display: contents;
    }

    .lp-footer__order-bar {
        display: none !important;
    }

    .lp-footer__final-cta {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .lp-section {
        padding-left: 0;
        padding-right: 0;
        /* Más respiración vertical entre secciones — mejora escaneabilidad móvil */
        padding-top: clamp(1.5rem, 4.5vw, 2rem);
        padding-bottom: clamp(1.5rem, 4.5vw, 2rem);
    }

    .lp-section__head {
        margin-bottom: clamp(1rem, 3vw, 1.35rem);
    }

    .lp-h2 {
        font-size: clamp(1.65rem, 6.5vw, 2rem);
        line-height: 1.18;
    }

    .lp-h3 {
        font-size: 1rem;
    }

    .lp-lead {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .lp-cta-row {
        margin-top: clamp(1rem, 2.8vw, 1.35rem);
    }

    .lp-footer {
        margin-top: 0.5rem;
        margin-bottom: 0;
        padding: 1.5rem 0 0;
        padding-bottom: 0;
    }

    .lp-footer__tagline {
        margin-bottom: 0.5rem;
    }

    .lp-footer__cols {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        margin-bottom: 1.1rem;
    }

    .lp-step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lp-step .lp-icon-box {
        margin-left: auto;
        margin-right: auto;
    }

    .lp-step p {
        grid-column: 1;
    }

    /* Menos bullets — el FAQ se siente menos saturado en móvil */
    .lp-faq__list {
        gap: 0.4rem;
    }

    .lp-faq__item summary {
        padding: 0.85rem 0.95rem;
        font-size: 0.95rem;
    }

    .lp-faq__item p {
        padding: 0 0.95rem 0.9rem;
        font-size: 0.85rem;
    }

    /* Reseñas: tipografía un punto más cómoda */
    .lp-review-card__text {
        font-size: 0.88rem;
        line-height: 1.55;
    }
}

/* ========== Preloader: navegación al menú EntregaChef ========== */
.menu-preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.menu-preloader.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.menu-loading {
    overflow: hidden;
}

.menu-preloader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding: 2rem;
    text-align: center;
    max-width: 90vw;
}

.menu-preloader__spinner-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: menuSpinnerBreathe 2.4s ease-in-out infinite;
}

.menu-preloader__spinner {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(238, 39, 55, 0.14);
    border-top-color: #ee2737;
    border-right-color: rgba(238, 39, 55, 0.55);
    box-shadow: 0 2px 14px rgba(238, 39, 55, 0.22);
    animation: menuPreloaderSpin 0.68s cubic-bezier(0.52, 0.18, 0.41, 0.86) infinite;
}

.menu-preloader__spinner::after {
    content: '';
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: rgba(7, 28, 53, 0.18);
    border-left-color: rgba(238, 39, 55, 0.22);
    border-top-color: rgba(7, 28, 53, 0.06);
    animation: menuPreloaderSpin 1.25s linear infinite reverse;
}

.menu-preloader__brand {
    font-family: 'Lobster', cursive, sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    color: #ee2737;
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.menu-preloader__hint {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #071c35;
    opacity: 0.92;
    line-height: 1.35;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.menu-preloader__dots {
    display: inline-flex;
    align-items: flex-end;
    margin-left: 1px;
    height: 1em;
}

.menu-preloader__dot {
    display: inline-block;
    font-size: 1.35em;
    font-weight: 800;
    line-height: 1;
    color: #ee2737;
    animation: menuDotWave 0.95s ease-in-out infinite;
    transform-origin: center 70%;
}

.menu-preloader__dot:nth-child(1) {
    animation-delay: 0s;
}

.menu-preloader__dot:nth-child(2) {
    animation-delay: 0.14s;
}

.menu-preloader__dot:nth-child(3) {
    animation-delay: 0.28s;
}

@keyframes menuPreloaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes menuSpinnerBreathe {
    0%,
    100% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.08);
    }

    55% {
        transform: scale(1.05);
    }
}

@keyframes menuDotWave {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.35;
    }

    35% {
        transform: translateY(-6px) scale(1.08);
        opacity: 1;
    }

    55% {
        transform: translateY(0) scale(1);
        opacity: 0.65;
    }
}

@media (prefers-reduced-motion: reduce) {
    .menu-preloader__spinner-wrap {
        animation: none;
    }

    .menu-preloader__spinner {
        animation: menuPreloaderSpin 1.6s linear infinite !important;
    }

    .menu-preloader__spinner::after {
        animation: menuPreloaderSpin 2.4s linear infinite reverse !important;
    }

    .menu-preloader__dot {
        animation: menuDotFade 1.4s ease-in-out infinite !important;
    }

    .menu-preloader__dot:nth-child(2) {
        animation-delay: 0.18s !important;
    }

    .menu-preloader__dot:nth-child(3) {
        animation-delay: 0.36s !important;
    }
}

@keyframes menuDotFade {
    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================================
   MODALES DEMO — capa compartida (bienvenida + salida)
   ============================================================ */
.ec-demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    min-height: -webkit-fill-available;
    z-index: 11100;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: max(12px, env(safe-area-inset-top, 0px))
        max(12px, env(safe-area-inset-right, 0px))
        max(12px, env(safe-area-inset-bottom, 0px))
        max(12px, env(safe-area-inset-left, 0px));
    box-sizing: border-box;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.36s cubic-bezier(0.4, 0, 0.2, 1);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.ec-demo-modal[hidden] {
    display: none !important;
}

.ec-demo-modal.is-open {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ec-welcome__backdrop,
.ec-exit__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(8px) saturate(1.05);
    -webkit-backdrop-filter: blur(8px) saturate(1.05);
    cursor: pointer;
}

.ec-welcome__panel,
.ec-exit__panel {
    position: relative;
    z-index: 1;
    margin: auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    max-height: min(90dvh, calc(100dvh - 2rem));
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.28),
        0 6px 18px rgba(15, 23, 42, 0.12);
    box-sizing: border-box;
    transform: translateY(10px) scale(0.985);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: min(720px, calc(100vw - 1.25rem));
    height: auto;
    max-height: none;
    padding: 0.95rem 1.12rem 1rem;
}

.ec-demo-modal.is-open .ec-welcome__panel,
.ec-demo-modal.is-open .ec-exit__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.ec-exit {
    z-index: 11000;
}

/* ============================================================
   BIENVENIDA DEMO — EntregaChef (una vez por navegador)
   ============================================================ */
.ec-welcome {
    /* Hereda .ec-demo-modal */
}

.ec-welcome__close,
.ec-exit__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(15, 23, 42, 0.05);
    color: #0f172a;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.ec-welcome__close:hover,
.ec-exit__close:hover {
    background: rgba(249, 115, 22, 0.12);
    color: #ea580c;
    transform: rotate(90deg);
}

.ec-exit__close:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

.ec-welcome__eyebrow,
.ec-exit__eyebrow {
    display: inline-block;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ea580c;
    background: rgba(249, 115, 22, 0.1);
    padding: 0.25rem 0.62rem;
    border-radius: 999px;
    margin-bottom: 0.45rem;
}

.ec-welcome__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(1.12rem, 2.9vw, 1.3rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.28;
    margin: 0 0 0.4rem;
}

.ec-welcome__brand,
.ec-exit__brand {
    font-family: "Lobster", cursive, sans-serif;
    font-weight: 400;
    font-size: clamp(1.3rem, 4.2vw, 1.63rem);
    color: #ee2737;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.ec-welcome__lead,
.ec-exit__lead {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.9rem;
    line-height: 1.38;
    color: #475569;
    margin: 0 0 0.5rem;
}

.ec-welcome__sections,
.ec-exit__sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    margin-bottom: 0.5rem;
}

.ec-welcome__section,
.ec-exit__section {
    border-radius: 10px;
    padding: 0.5rem 0.62rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.81rem;
    line-height: 1.38;
    color: #334155;
}

.ec-welcome__section--yes {
    background: rgba(22, 163, 74, 0.07);
    border: 1px solid rgba(22, 163, 74, 0.16);
}

.ec-welcome__section--no {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.ec-welcome__section-title,
.ec-exit__section-title {
    font-size: 0.86rem;
    font-weight: 800;
    margin: 0 0 0.28rem;
    color: #0f172a;
}

.ec-welcome__section ul,
.ec-exit__section ul {
    margin: 0;
    padding-left: 0.95rem;
}

.ec-welcome__section li + li,
.ec-exit__section li + li {
    margin-top: 0.2rem;
}

.ec-welcome__free,
.ec-exit__note {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.83rem;
    line-height: 1.35;
    color: #334155;
    margin: 0 0 0.5rem;
    padding: 0.45rem 0.62rem;
    background: rgba(249, 115, 22, 0.07);
    border-radius: 8px;
    border-left: 3px solid #f97316;
}

.ec-welcome__steps-title {
    margin: 0 0 0.35rem;
    color: #0f172a;
}

.ec-welcome__steps-list {
    margin: 0;
    padding-left: 0.95rem;
}

.ec-welcome__steps-list li + li {
    margin-top: 0.2rem;
}

.ec-welcome__actions,
.ec-exit__actions {
    /* layout vía .ec-demo-ctas en modal */
}

/* Botones popup = mismas clases y forma que hero EntregaChef (bDjvej / cKWTai) */
.ec-demo-modal .ec-demo-ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-top: 0;
    flex-wrap: nowrap;
    justify-content: stretch;
    /* 62.5% en landing → 1rem = 10px; em aquí replica esas proporciones */
    font-size: 10px;
}

.ec-demo-modal .ec-demo-ctas > .bDjvej,
.ec-demo-modal .ec-demo-ctas > .cKWTai,
.ec-demo-modal .ec-demo-ctas > a.bDjvej,
.ec-demo-modal .ec-demo-ctas > a.cKWTai,
.ec-demo-modal .ec-demo-ctas > button.bDjvej,
.ec-demo-modal .ec-demo-ctas > button.cKWTai {
    width: 100% !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: normal;
    text-decoration: none;
    text-align: center;
    text-transform: none !important;
    letter-spacing: 0.01em;
    line-height: 1.15;
    font-family: var(--font, "Plus Jakarta Sans", system-ui, sans-serif) !important;
    font-weight: 700 !important;
    box-sizing: border-box;
    cursor: pointer;
    padding: 1.5em 2.25em !important;
    font-size: clamp(1.2em, 1.85vw, 1.55em) !important;
    min-height: 4.25em;
    border-radius: 0.65em !important;
    -webkit-appearance: none;
    appearance: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* Primario — borde naranja explícito (evita borde negro del estilo nativo de <button>) */
.ec-demo-modal .ec-demo-ctas > .bDjvej,
.ec-demo-modal .ec-demo-ctas > a.bDjvej,
.ec-demo-modal .ec-demo-ctas > button.bDjvej {
    color: #fff !important;
    background: linear-gradient(180deg, #ff9248 0%, #ff6a1a 48%, #e85d0a 100%) !important;
    border: 2px solid #ff6a1a !important;
    outline: none !important;
    box-shadow: 0 4px 18px rgba(255, 106, 26, 0.28) !important;
}

.ec-demo-modal .ec-demo-ctas > .bDjvej:focus-visible,
.ec-demo-modal .ec-demo-ctas > a.bDjvej:focus-visible,
.ec-demo-modal .ec-demo-ctas > button.bDjvej:focus-visible {
    border-color: #e85d0a !important;
    outline: 2px solid rgba(255, 106, 26, 0.45) !important;
    outline-offset: 2px !important;
}

.ec-demo-modal .ec-demo-ctas > .bDjvej:hover,
.ec-demo-modal .ec-demo-ctas > a.bDjvej:hover,
.ec-demo-modal .ec-demo-ctas > button.bDjvej:hover {
    border-color: #e85d0a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(255, 106, 26, 0.34) !important;
}

/* Secundario — borde naranja tenue, sin anillo oscuro */
.ec-demo-modal .ec-demo-ctas > .cKWTai,
.ec-demo-modal .ec-demo-ctas > a.cKWTai,
.ec-demo-modal .ec-demo-ctas > button.cKWTai {
    color: #0f172a !important;
    background: #fff !important;
    border: 1.5px solid rgba(249, 115, 22, 0.62) !important;
    outline: none !important;
    box-shadow: none !important;
}

.ec-demo-modal .ec-demo-ctas > .cKWTai:hover,
.ec-demo-modal .ec-demo-ctas > a.cKWTai:hover,
.ec-demo-modal .ec-demo-ctas > button.cKWTai:hover {
    border-color: rgba(234, 88, 12, 0.88) !important;
    background: rgba(249, 115, 22, 0.04) !important;
    box-shadow: none !important;
}

.ec-demo-modal .ec-demo-ctas > .bDjvej span,
.ec-demo-modal .ec-demo-ctas > .cKWTai span {
    margin-left: 0.45em !important;
}

@media (max-width: 520px) {
    .ec-demo-modal .ec-demo-ctas {
        gap: 0.55rem;
    }

    .ec-demo-modal .ec-demo-ctas > .bDjvej,
    .ec-demo-modal .ec-demo-ctas > .cKWTai,
    .ec-demo-modal .ec-demo-ctas > a.bDjvej,
    .ec-demo-modal .ec-demo-ctas > a.cKWTai,
    .ec-demo-modal .ec-demo-ctas > button.bDjvej,
    .ec-demo-modal .ec-demo-ctas > button.cKWTai {
        padding: 1.15em 1.4em !important;
        font-size: 1.08em !important;
        min-height: 3.5em;
    }

    .ec-demo-modal .ec-demo-ctas > .bDjvej span,
    .ec-demo-modal .ec-demo-ctas > .cKWTai span {
        margin-left: 0.35em !important;
    }
}

/* ============================================================
   SALIDA DEMO — Paso 2: panel 7 días (formato alineado a bienvenida)
   ============================================================ */
.ec-exit {
    /* Hereda .ec-demo-modal */
}

.ec-exit__brand-inline {
    font-family: "Lobster", cursive, sans-serif;
    font-weight: 400;
    color: #ee2737;
}

.ec-exit__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(1.12rem, 2.9vw, 1.3rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.28;
    margin: 0 0 0.4rem;
}

.ec-exit__section--yes {
    background: rgba(22, 163, 74, 0.07);
    border: 1px solid rgba(22, 163, 74, 0.16);
}

.ec-exit__section--no {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 520px) {
    .ec-welcome__panel,
    .ec-exit__panel {
        width: min(100%, calc(100vw - 0.85rem));
        padding: 0.78rem 0.85rem 0.85rem;
    }

    .ec-welcome__sections,
    .ec-exit__sections {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .ec-welcome__brand,
    .ec-exit__brand {
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ec-demo-modal,
    .ec-demo-modal__panel,
    .ec-welcome__panel,
    .ec-exit__panel,
    .ec-welcome__close,
    .ec-exit__close,
    .ec-welcome__cta,
    .ec-exit__cta {
        transition-duration: 0.01ms !important;
    }

    .ec-demo-modal__panel,
    .ec-welcome__panel,
    .ec-exit__panel {
        transform: none !important;
    }
}

/* Botón flotante — volver arriba al hacer scroll */
.ec-scroll-top {
    position: fixed;
    right: max(1.15rem, env(safe-area-inset-right, 0px));
    bottom: max(1.15rem, env(safe-area-inset-bottom, 0px));
    width: 3.1rem;
    height: 3.1rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ee2737;
    color: #fff;
    box-shadow: 0 5px 30px rgba(238, 39, 55, 0.28), 0 2px 8px rgba(15, 23, 42, 0.1);
    cursor: pointer;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.75rem) scale(0.92);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
}

.ec-scroll-top svg {
    width: 1.35rem;
    height: 1.35rem;
}

.ec-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.ec-scroll-top:hover {
    background: #d61f2f;
    transform: translateY(0) scale(1.05);
}

.ec-scroll-top:focus-visible {
    outline: 2px solid #ee2737;
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .ec-scroll-top {
        width: 2.85rem;
        height: 2.85rem;
        right: max(0.85rem, env(safe-area-inset-right, 0px));
        bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    }

    .ec-scroll-top svg {
        width: 1.2rem;
        height: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ec-scroll-top {
        transition-duration: 0.01ms !important;
    }
}
