/* Bait Brandbook 2026 VF — colores oficiales */
        :root {
            /* Primarios: PMS 109 C, Black C, Blanco */
            --bait-amarillo: #FFD100;
            --bait-blanco: #FFFFFF;
            --bait-negro: #000000;
            /* Secundarios Prepago: azul oferta | magenta beneficios | gris legales */
            --bait-azul: #0099DD;
            --bait-magenta: #e80280;
            --bait-rojo: #ee3823;
            --bait-gris: #d9d8d8;
            /* Prepago master graphic: ~45% amarillo, ~45% negro, ~10% acentos */
            --prepago-amarillo-ratio: 45%;
            --prepago-negro-ratio: 45%;
            --wrap-max: 720px;
            --pad-x: 20px;
            --touch-min: 48px;
            --safe-top: env(safe-area-inset-top, 0px);
            --safe-right: env(safe-area-inset-right, 0px);
            --safe-bottom: env(safe-area-inset-bottom, 0px);
            --safe-left: env(safe-area-inset-left, 0px);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html {
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--bait-negro);
            color: var(--bait-blanco);
            min-height: 100vh;
            min-height: 100dvh;
            overflow-x: hidden;
            -webkit-tap-highlight-color: transparent;
        }
        body.is-entry-active {
            overflow: hidden;
        }
        #main-app {
            width: 100%;
            overflow-x: clip;
            opacity: 0;
            transform: translateY(14px) scale(0.99);
            animation: page-enter 0.75s cubic-bezier(0.22, 0.85, 0.28, 1) 1.45s forwards;
        }
        @keyframes page-enter {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Intro — logo Bait y luego entra la landing */
        .entry-splash {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bait-negro);
            pointer-events: auto;
            animation: entry-splash-out 0.5s ease 1.55s forwards;
        }
        .entry-splash.is-done {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .entry-splash__inner {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
        }
        .entry-splash__glow {
            position: absolute;
            width: min(220px, 55vw);
            height: min(220px, 55vw);
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 209, 0, 0.22) 0%, transparent 68%);
            animation: entry-glow-pulse 1.1s ease-in-out infinite;
            pointer-events: none;
        }
        .entry-splash__logo {
            position: relative;
            z-index: 1;
            width: min(130px, 34vw);
            height: auto;
            object-fit: contain;
            animation: entry-logo-in 0.55s cubic-bezier(0.34, 1.35, 0.64, 1) forwards;
            filter:
                drop-shadow(0 0 18px rgba(255, 209, 0, 0.5))
                drop-shadow(0 0 36px rgba(255, 209, 0, 0.2));
        }
        @keyframes entry-logo-in {
            from {
                opacity: 0;
                transform: scale(0.72);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        @keyframes entry-glow-pulse {
            0%, 100% { transform: scale(0.92); opacity: 0.75; }
            50% { transform: scale(1.06); opacity: 1; }
        }
        @keyframes entry-splash-out {
            to {
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }
        }

        /* Fondo negro Bait + atmósfera animada */
        .page-bg {
            position: fixed;
            inset: 0;
            z-index: 0;
            background-color: var(--bait-negro);
            background-image:
                radial-gradient(ellipse 90% 55% at 50% -5%, rgba(255, 209, 0, 0.16) 0%, transparent 52%),
                radial-gradient(ellipse 45% 40% at 100% 35%, rgba(0, 153, 221, 0.12) 0%, transparent 48%),
                radial-gradient(ellipse 40% 38% at 0% 75%, rgba(232, 2, 128, 0.1) 0%, transparent 48%),
                radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 209, 0, 0.05) 0%, transparent 55%);
            background-size: 120% 120%;
            animation: page-bg-drift 22s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes page-bg-drift {
            0%, 100% { background-position: 0% 0%; }
            50% { background-position: 100% 100%; }
        }
        .page-bg__vignette {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
        }
        .page-bg__scanlines {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.04;
            background: repeating-linear-gradient(
                0deg,
                transparent 0,
                transparent 2px,
                rgba(255, 255, 255, 0.12) 2px,
                rgba(255, 255, 255, 0.12) 3px
            );
        }

        /* Franjas amarillas — identidad Prepago (brandbook §26) */
        .bait-stripe {
            position: fixed;
            z-index: 0;
            pointer-events: none;
        }
        .bait-stripe--edge-top {
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--bait-amarillo);
        }
        /* Acento derecho — equilibra la franja lateral sin cruzar el contenido */
        .bait-stripe--edge-right {
            top: 0;
            bottom: 0;
            right: 0;
            width: clamp(3px, 0.7vw, 5px);
            background: linear-gradient(
                180deg,
                transparent 0%,
                rgba(255, 209, 0, 0.45) 22%,
                rgba(255, 209, 0, 0.7) 50%,
                rgba(255, 209, 0, 0.45) 78%,
                transparent 100%
            );
        }
        /* Banda suave cerca del pie — reemplaza la franja diagonal del centro */
        .bait-stripe--pre-footer {
            bottom: clamp(72px, 12vh, 120px);
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 209, 0, 0.35) 18%,
                rgba(255, 209, 0, 0.55) 50%,
                rgba(255, 209, 0, 0.35) 82%,
                transparent 100%
            );
            opacity: 0.85;
        }
        .bait-stripe--side {
            top: 0;
            bottom: 0;
            left: 0;
            width: clamp(4px, 1.2vw, 8px);
            background: linear-gradient(
                180deg,
                var(--bait-amarillo) 0%,
                var(--bait-amarillo) 42%,
                transparent 42%,
                transparent 58%,
                var(--bait-amarillo) 58%,
                var(--bait-amarillo) 100%
            );
        }
        .bait-stripe--bottom {
            bottom: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(
                90deg,
                var(--bait-amarillo) 0%,
                var(--bait-amarillo) 38%,
                var(--bait-negro) 38%,
                var(--bait-negro) 42%,
                var(--bait-amarillo) 42%,
                var(--bait-amarillo) 78%,
                var(--bait-negro) 78%,
                var(--bait-negro) 100%
            );
        }

        .page-decor {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }
        .decor-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 209, 0, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 209, 0, 0.1) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: radial-gradient(ellipse 95% 90% at 50% 40%, #000 5%, transparent 88%);
        }
        .decor-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            animation: decor-drift 18s ease-in-out infinite;
        }
        .decor-orb--yellow {
            width: min(280px, 50vw);
            height: min(280px, 50vw);
            top: 8%;
            right: -8%;
            background: rgba(255, 209, 0, 0.2);
        }
        .decor-orb--blue {
            width: min(220px, 42vw);
            height: min(220px, 42vw);
            bottom: 22%;
            left: -10%;
            background: rgba(0, 153, 221, 0.18);
            animation-delay: -6s;
        }
        .decor-orb--magenta {
            width: min(180px, 35vw);
            height: min(180px, 35vw);
            top: 42%;
            right: 5%;
            background: rgba(232, 2, 128, 0.15);
            animation-delay: -12s;
        }
        .decor-orb--yellow-soft {
            width: min(200px, 38vw);
            height: min(200px, 38vw);
            bottom: 8%;
            left: 35%;
            background: rgba(255, 209, 0, 0.12);
            animation-delay: -9s;
        }
        @keyframes decor-drift {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-12px, 18px) scale(1.05); }
            66% { transform: translate(10px, -14px) scale(0.95); }
        }
        .decor-ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(255, 209, 0, 0.12);
            animation: decor-spin 40s linear infinite;
        }
        .decor-ring--1 {
            width: min(420px, 90vw);
            height: min(420px, 90vw);
            top: -12%;
            left: 0;
            right: 0;
            margin-left: auto;
            margin-right: auto;
            animation: decor-spin 45s linear infinite;
        }
        .decor-ring--2 {
            width: min(300px, 70vw);
            height: min(300px, 70vw);
            bottom: 5%;
            right: -20%;
            border-color: rgba(0, 153, 221, 0.15);
            animation: decor-spin 55s linear infinite reverse;
        }
        @keyframes decor-spin {
            to { transform: rotate(360deg); }
        }

        @keyframes decor-float-drift {
            0%, 100% {
                transform: translate(0, 0) rotate(var(--decor-rot, 0deg));
                opacity: var(--decor-o, 0.4);
            }
            33% {
                transform: translate(10px, -22px) rotate(calc(var(--decor-rot, 0deg) + 5deg));
                opacity: calc(var(--decor-o, 0.4) + 0.15);
            }
            66% {
                transform: translate(-8px, -32px) rotate(calc(var(--decor-rot, 0deg) - 4deg));
                opacity: calc(var(--decor-o, 0.4) + 0.08);
            }
        }
        @keyframes decor-float-slow {
            0%, 100% { transform: translate(0, 0) rotate(var(--decor-rot, 0deg)); }
            50% { transform: translate(-12px, -40px) rotate(calc(var(--decor-rot, 0deg) + 8deg)); }
        }

        .decor-icon {
            position: absolute;
            color: var(--bait-amarillo);
            --decor-o: 0.42;
            --decor-rot: 0deg;
            filter: drop-shadow(0 0 14px rgba(255, 209, 0, 0.45));
            animation: decor-float-drift var(--decor-dur, 7s) ease-in-out infinite;
            animation-delay: var(--decor-delay, 0s);
        }
        .decor-icon--1 { top: 10%; left: 5%; font-size: 2.1rem; --decor-delay: 0s; --decor-dur: 6.5s; }
        .decor-icon--2 { top: 20%; right: 6%; font-size: 2.5rem; color: var(--bait-azul); filter: drop-shadow(0 0 16px rgba(0, 153, 221, 0.5)); --decor-delay: -1.2s; --decor-dur: 7.5s; }
        .decor-icon--3 { bottom: 35%; left: 8%; font-size: 2.2rem; color: var(--bait-magenta); filter: drop-shadow(0 0 16px rgba(232, 2, 128, 0.45)); --decor-delay: -2.8s; --decor-rot: -8deg; }
        .decor-icon--4 { bottom: 14%; right: 10%; font-size: 2.3rem; --decor-delay: -0.8s; --decor-dur: 8s; }
        .decor-icon--5 { top: 48%; left: 2%; font-size: 1.9rem; color: var(--bait-azul); filter: drop-shadow(0 0 14px rgba(0, 153, 221, 0.45)); --decor-delay: -3.2s; }
        .decor-icon--6 { top: 6%; right: 20%; font-size: 1.75rem; color: var(--bait-magenta); --decor-delay: -4.5s; --decor-rot: 12deg; }
        .decor-icon--7 { top: 65%; right: 4%; font-size: 2rem; --decor-delay: -2s; --decor-dur: 6s; }
        .decor-icon--8 { bottom: 48%; right: 26%; font-size: 1.65rem; color: var(--bait-azul); --decor-delay: -1.5s; }
        .decor-icon--9 { top: 36%; left: 16%; font-size: 1.55rem; --decor-delay: -3.8s; --decor-rot: 6deg; }
        .decor-icon--10 { bottom: 6%; left: 20%; font-size: 1.85rem; color: var(--bait-magenta); --decor-delay: -5s; }
        .decor-icon--11 { top: 78%; left: 38%; font-size: 1.5rem; color: var(--bait-azul); --decor-delay: -2.2s; --decor-dur: 9s; }
        .decor-icon--12 { top: 42%; right: 2%; font-size: 1.45rem; color: var(--bait-amarillo); --decor-delay: -4s; }
        .decor-icon--13 { bottom: 58%; left: 42%; font-size: 1.35rem; color: var(--bait-magenta); --decor-delay: -1s; --decor-rot: -10deg; }
        .decor-icon--14 { top: 28%; left: 42%; font-size: 1.6rem; color: var(--bait-azul); --decor-delay: -3.5s; }
        .decor-icon--15 { bottom: 24%; right: 38%; font-size: 1.7rem; --decor-delay: -2.6s; --decor-dur: 7.2s; }
        .decor-icon--16 { top: 55%; right: 38%; font-size: 1.4rem; color: var(--bait-magenta); --decor-delay: -5.5s; }
        .decor-icon--17 { top: 14%; left: 32%; font-size: 1.3rem; color: var(--bait-azul); --decor-delay: -0.5s; }
        .decor-icon--18 { bottom: 72%; right: 14%; font-size: 1.55rem; --decor-delay: -4.2s; --decor-rot: 15deg; }
        .decor-icon--19 { top: 88%; right: 42%; font-size: 1.25rem; color: var(--bait-amarillo); --decor-delay: -3s; }
        .decor-icon--20 { bottom: 42%; left: 28%; font-size: 1.5rem; color: var(--bait-azul); --decor-delay: -6s; --decor-dur: 8.5s; }

        /* Teléfonos flotantes (outline) */
        .decor-phone {
            position: absolute;
            width: 46px;
            height: 82px;
            border: 2px solid rgba(0, 153, 221, 0.55);
            border-radius: 11px;
            background: rgba(0, 153, 221, 0.06);
            box-shadow: 0 0 24px rgba(0, 153, 221, 0.35), inset 0 0 20px rgba(0, 153, 221, 0.08);
            --decor-rot: -14deg;
            --decor-o: 0.55;
            --decor-dur: 8s;
            animation: decor-float-drift var(--decor-dur) ease-in-out infinite;
            animation-delay: var(--decor-delay, 0s);
        }
        .decor-phone::before {
            content: '';
            position: absolute;
            top: 7px;
            left: 50%;
            transform: translateX(-50%);
            width: 14px;
            height: 3px;
            border-radius: 2px;
            background: rgba(0, 153, 221, 0.4);
        }
        .decor-phone::after {
            content: '';
            position: absolute;
            bottom: 7px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            border-radius: 2px;
            background: rgba(0, 153, 221, 0.5);
        }
        .decor-phone--1 { top: 8%; left: 12%; --decor-delay: -1s; }
        .decor-phone--2 { top: 62%; right: 8%; width: 40px; height: 72px; --decor-rot: 18deg; --decor-delay: -3s; }
        .decor-phone--3 { bottom: 28%; left: 4%; width: 38px; height: 68px; --decor-rot: 8deg; --decor-delay: -5s; opacity: 0.85; }
        .decor-phone--4 { top: 32%; right: 32%; --decor-rot: -22deg; --decor-delay: -2.5s; border-color: rgba(255, 209, 0, 0.45); box-shadow: 0 0 20px rgba(255, 209, 0, 0.3); }
        .decor-phone--4::after { background: rgba(255, 209, 0, 0.45); }

        /* SIM flotantes */
        .decor-sim {
            position: absolute;
            width: 40px;
            height: 48px;
            background: rgba(232, 2, 128, 0.2);
            border: 2px solid rgba(232, 2, 128, 0.65);
            border-radius: 5px;
            clip-path: polygon(0 0, 100% 0, 100% 82%, 78% 100%, 0 100%);
            box-shadow: 0 0 22px rgba(232, 2, 128, 0.4);
            --decor-rot: 12deg;
            --decor-o: 0.5;
            animation: decor-float-slow var(--decor-dur, 9s) ease-in-out infinite;
            animation-delay: var(--decor-delay, 0s);
        }
        .decor-sim::after {
            content: '';
            position: absolute;
            top: 14px;
            left: 8px;
            right: 8px;
            bottom: 14px;
            background: repeating-linear-gradient(
                90deg,
                rgba(232, 2, 128, 0.35) 0 3px,
                transparent 3px 6px
            );
            opacity: 0.6;
            border-radius: 2px;
        }
        .decor-sim--1 { bottom: 18%; right: 22%; --decor-delay: -2s; }
        .decor-sim--2 { top: 52%; left: 8%; --decor-rot: -16deg; --decor-delay: -4.5s; width: 34px; height: 42px; }
        .decor-sim--3 { top: 18%; right: 4%; --decor-delay: -1.5s; }
        .decor-sim--4 { bottom: 52%; left: 48%; --decor-rot: 20deg; --decor-delay: -6s; }
        .decor-sim--5 { top: 72%; left: 62%; --decor-delay: -3.2s; width: 32px; height: 40px; }

        .decor-chip {
            position: absolute;
            width: 56px;
            height: 36px;
            border-radius: 8px;
            border: 2px solid rgba(255, 209, 0, 0.35);
            background: linear-gradient(135deg, rgba(255, 209, 0, 0.12), rgba(0, 0, 0, 0.2));
            box-shadow: 0 0 18px rgba(255, 209, 0, 0.25);
            --decor-rot: 12deg;
            --decor-o: 0.55;
            animation: decor-float-drift var(--decor-dur, 7.5s) ease-in-out infinite;
            animation-delay: var(--decor-delay, 0s);
        }
        .decor-chip::after {
            content: '';
            position: absolute;
            left: 9px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 11px;
            border-radius: 2px;
            background: rgba(255, 209, 0, 0.45);
            box-shadow: 0 0 8px rgba(255, 209, 0, 0.4);
        }
        .decor-chip--1 { top: 11%; right: 16%; --decor-rot: 12deg; --decor-delay: 0s; }
        .decor-chip--2 { bottom: 36%; left: 5%; --decor-rot: -18deg; border-color: rgba(0, 153, 221, 0.45); --decor-delay: -2s; }
        .decor-chip--2::after { background: rgba(0, 153, 221, 0.4); }
        .decor-chip--3 { top: 44%; right: 18%; --decor-rot: -8deg; --decor-delay: -4s; width: 48px; height: 32px; }
        .decor-chip--4 { bottom: 12%; left: 38%; --decor-rot: 22deg; border-color: rgba(232, 2, 128, 0.4); --decor-delay: -1.8s; }
        .decor-chip--4::after { background: rgba(232, 2, 128, 0.35); }
        .decor-chip--5 { top: 75%; right: 52%; --decor-rot: -14deg; --decor-delay: -5.2s; }
        .decor-chip--6 { top: 24%; left: 2%; --decor-rot: 6deg; --decor-delay: -3.6s; opacity: 0.9; }

        /* Partículas / destellos */
        .decor-spark {
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--bait-amarillo);
            box-shadow: 0 0 12px var(--bait-amarillo);
            --decor-dur: 5s;
            animation: decor-float-drift var(--decor-dur) ease-in-out infinite;
            animation-delay: var(--decor-delay, 0s);
        }
        .decor-spark--blue { background: var(--bait-azul); box-shadow: 0 0 12px var(--bait-azul); }
        .decor-spark--pink { background: var(--bait-magenta); box-shadow: 0 0 12px var(--bait-magenta); width: 5px; height: 5px; }
        .decor-spark--1 { top: 15%; left: 55%; --decor-delay: -0.5s; }
        .decor-spark--2 { top: 45%; left: 72%; --decor-delay: -2s; }
        .decor-spark--3 { bottom: 30%; left: 15%; --decor-delay: -3.5s; }
        .decor-spark--4 { top: 60%; right: 45%; --decor-delay: -1.2s; }
        .decor-spark--5 { bottom: 15%; right: 55%; --decor-delay: -4s; }
        .decor-spark--6 { top: 82%; left: 25%; --decor-delay: -2.8s; }
        .decor-spark--7 { top: 30%; right: 48%; --decor-delay: -5s; }
        .decor-spark--8 { bottom: 45%; right: 8%; --decor-delay: -0.8s; }
        .decor-spark--9 { top: 22%; left: 8%; --decor-delay: -3.2s; }
        .decor-spark--10 { bottom: 62%; right: 28%; --decor-delay: -1.8s; }
        .decor-spark--11 { top: 70%; left: 55%; --decor-delay: -4.5s; }
        .decor-spark--12 { top: 8%; right: 35%; --decor-delay: -2.4s; }

        /* Rayos de luz / hexágonos / pulsos */
        .decor-beam {
            position: absolute;
            width: 2px;
            height: min(280px, 45vh);
            background: linear-gradient(
                180deg,
                transparent,
                rgba(255, 209, 0, 0.5) 35%,
                rgba(0, 153, 221, 0.35) 65%,
                transparent
            );
            transform-origin: center top;
            opacity: 0.35;
            animation: decor-beam-pulse 6s ease-in-out infinite;
            animation-delay: var(--decor-delay, 0s);
        }
        @keyframes decor-beam-pulse {
            0%, 100% { opacity: 0.2; transform: scaleY(0.85) rotate(var(--decor-rot, 12deg)); }
            50% { opacity: 0.55; transform: scaleY(1) rotate(var(--decor-rot, 12deg)); }
        }
        .decor-beam--1 { top: 5%; left: 18%; --decor-rot: 18deg; --decor-delay: 0s; }
        .decor-beam--2 { top: 12%; right: 22%; --decor-rot: -14deg; --decor-delay: -2.5s; height: min(220px, 38vh); }
        .decor-beam--3 { bottom: 10%; left: 55%; --decor-rot: 8deg; --decor-delay: -4s; }

        .decor-hex {
            position: absolute;
            width: 52px;
            height: 52px;
            border: 1px solid rgba(255, 209, 0, 0.25);
            background: rgba(255, 209, 0, 0.04);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            --decor-rot: 0deg;
            --decor-o: 0.35;
            animation: decor-float-slow 12s ease-in-out infinite;
            animation-delay: var(--decor-delay, 0s);
        }
        .decor-hex--1 { top: 18%; right: 12%; --decor-delay: -1s; }
        .decor-hex--2 { bottom: 22%; left: 14%; border-color: rgba(0, 153, 221, 0.35); --decor-delay: -3s; }
        .decor-hex--3 { top: 58%; right: 42%; width: 40px; height: 40px; --decor-delay: -5.5s; }

        .decor-pulse-ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(255, 209, 0, 0.2);
            animation: decor-pulse-expand 4s ease-out infinite;
            animation-delay: var(--decor-delay, 0s);
        }
        @keyframes decor-pulse-expand {
            0% { transform: scale(0.6); opacity: 0.5; }
            100% { transform: scale(1.4); opacity: 0; }
        }
        .decor-pulse-ring--1 { width: 80px; height: 80px; top: 25%; left: 25%; }
        .decor-pulse-ring--2 { width: 60px; height: 60px; bottom: 35%; right: 30%; border-color: rgba(232, 2, 128, 0.35); --decor-delay: -2s; }

        .decor-badge-float {
            position: absolute;
            padding: 6px 12px;
            font-size: 0.65rem;
            font-weight: 900;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            border-radius: 999px;
            border: 1px solid rgba(255, 209, 0, 0.4);
            background: rgba(0, 0, 0, 0.5);
            color: var(--bait-amarillo);
            box-shadow: 0 0 20px rgba(255, 209, 0, 0.25);
            --decor-o: 0.7;
            animation: decor-float-drift 8s ease-in-out infinite;
            animation-delay: var(--decor-delay, 0s);
        }
        .decor-badge-float--gratis { top: 32%; right: 6%; --decor-delay: -1s; }
        .decor-badge-float--gb { bottom: 38%; left: 6%; color: var(--bait-azul); border-color: rgba(0, 153, 221, 0.45); box-shadow: 0 0 18px rgba(0, 153, 221, 0.3); --decor-delay: -3.5s; }

        .decor-icon--21 { top: 52%; left: 28%; font-size: 1.4rem; color: var(--bait-amarillo); --decor-delay: -2.8s; }
        .decor-icon--22 { bottom: 8%; right: 18%; font-size: 1.6rem; color: var(--bait-azul); --decor-delay: -4.2s; }
        .decor-icon--23 { top: 4%; left: 48%; font-size: 1.2rem; color: var(--bait-magenta); --decor-delay: -0.8s; }
        .decor-icon--24 { bottom: 65%; right: 2%; font-size: 1.35rem; --decor-delay: -5.5s; }

        /* Flancos decorativos — solo pantallas grandes */
        .desktop-flanks {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }
        .desktop-flank {
            position: absolute;
            top: 0;
            bottom: 0;
            width: clamp(100px, 12vw, 200px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: clamp(18px, 3vh, 36px);
            padding: clamp(60px, 10vh, 120px) 0;
        }
        .desktop-flank--left { left: 0; }
        .desktop-flank--right { right: 0; }
        .desktop-flank__glow {
            position: absolute;
            inset: 8% 0;
            background: linear-gradient(
                180deg,
                transparent 0%,
                rgba(255, 209, 0, 0.06) 18%,
                rgba(0, 153, 221, 0.05) 50%,
                rgba(232, 2, 128, 0.05) 82%,
                transparent 100%
            );
            mask-image: linear-gradient(90deg, #000 0%, transparent 100%);
        }
        .desktop-flank--right .desktop-flank__glow {
            background: linear-gradient(
                180deg,
                transparent 0%,
                rgba(232, 2, 128, 0.06) 18%,
                rgba(255, 209, 0, 0.05) 50%,
                rgba(0, 153, 221, 0.05) 82%,
                transparent 100%
            );
            mask-image: linear-gradient(270deg, #000 0%, transparent 100%);
        }
        .desktop-flank__rail {
            position: absolute;
            top: 12%;
            bottom: 12%;
            width: 2px;
            background: linear-gradient(
                180deg,
                transparent 0%,
                rgba(255, 209, 0, 0.35) 15%,
                rgba(255, 209, 0, 0.65) 50%,
                rgba(255, 209, 0, 0.35) 85%,
                transparent 100%
            );
            box-shadow: 0 0 16px rgba(255, 209, 0, 0.25);
        }
        .desktop-flank--left .desktop-flank__rail { right: clamp(8px, 1.2vw, 18px); }
        .desktop-flank--right .desktop-flank__rail { left: clamp(8px, 1.2vw, 18px); }
        .desktop-flank__badge {
            position: relative;
            z-index: 1;
            padding: 10px 14px;
            border-radius: 999px;
            border: 2px solid rgba(255, 209, 0, 0.55);
            background: rgba(0, 0, 0, 0.72);
            color: var(--bait-amarillo);
            font-size: clamp(0.65rem, 1vw, 0.78rem);
            font-weight: 900;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            box-shadow: 0 0 24px rgba(255, 209, 0, 0.18);
            animation: desktop-flank-float 5s ease-in-out infinite;
        }
        .desktop-flank__badge--gb {
            color: var(--bait-azul);
            border-color: rgba(0, 153, 221, 0.55);
            box-shadow: 0 0 24px rgba(0, 153, 221, 0.22);
            animation-delay: -1.5s;
        }
        .desktop-flank__badge--gratis {
            color: var(--bait-magenta);
            border-color: rgba(232, 2, 128, 0.55);
            box-shadow: 0 0 24px rgba(232, 2, 128, 0.22);
            animation-delay: -2.5s;
        }
        .desktop-flank__badge--vert {
            writing-mode: vertical-rl;
            text-orientation: mixed;
            padding: 16px 10px;
            letter-spacing: 0.18em;
        }
        .desktop-flank__icon {
            position: relative;
            z-index: 1;
            font-size: clamp(1.35rem, 2vw, 1.85rem);
            color: var(--bait-amarillo);
            filter: drop-shadow(0 0 14px rgba(255, 209, 0, 0.45));
            animation: desktop-flank-float 6s ease-in-out infinite;
        }
        .desktop-flank__icon--blue {
            color: var(--bait-azul);
            filter: drop-shadow(0 0 14px rgba(0, 153, 221, 0.5));
            animation-delay: -1s;
        }
        .desktop-flank__icon--pink {
            color: var(--bait-magenta);
            filter: drop-shadow(0 0 14px rgba(232, 2, 128, 0.45));
            animation-delay: -2s;
        }
        .desktop-flank__icon:nth-child(4) { animation-delay: -0.5s; }
        .desktop-flank__icon:nth-child(5) { animation-delay: -1.8s; }
        .desktop-flank__icon:nth-child(6) { animation-delay: -3s; }
        .desktop-flank__dot {
            position: relative;
            z-index: 1;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--bait-amarillo);
            box-shadow: 0 0 12px var(--bait-amarillo);
            animation: desktop-flank-pulse 2.4s ease-in-out infinite;
        }
        @keyframes desktop-flank-float {
            0%, 100% { transform: translateY(0); opacity: 0.85; }
            50% { transform: translateY(-10px); opacity: 1; }
        }
        @keyframes desktop-flank-pulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.35); opacity: 1; }
        }

        .wrap {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: var(--wrap-max);
            margin: 0 auto;
            padding:
                calc(6px + var(--safe-top))
                max(var(--pad-x), var(--safe-right))
                max(48px, var(--safe-bottom))
                max(var(--pad-x), var(--safe-left));
        }
        .wrap::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            width: min(100%, calc(var(--wrap-max) + 48px));
            height: 100%;
            border-radius: 28px;
            background: radial-gradient(ellipse 90% 40% at 50% 0%, rgba(255, 209, 0, 0.07) 0%, transparent 65%);
            pointer-events: none;
            z-index: -1;
        }

        /* Header — logotipos agrupados con respiro */
        .header {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: clamp(14px, 3vw, 22px) var(--pad-x) clamp(12px, 2.5vw, 18px);
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }
        .header-logos {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: clamp(10px, 2.2vw, 16px);
            max-width: calc(100% - 88px);
            margin: 0 auto;
            padding: clamp(10px, 2.2vw, 14px) clamp(16px, 3.5vw, 24px);
            box-sizing: border-box;
            background: linear-gradient(135deg, rgba(255, 209, 0, 0.07) 0%, rgba(0, 0, 0, 0.2) 55%);
            border: 1px solid rgba(255, 209, 0, 0.18);
            border-radius: 999px;
            box-shadow:
                0 4px 20px rgba(0, 0, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }
        .logo-yaavs {
            height: clamp(20px, 4.5vw, 26px);
            width: auto;
            max-width: 88px;
            object-fit: contain;
            opacity: 0.9;
            filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
            flex-shrink: 0;
            display: block;
        }
        .header-logos-divider {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--bait-amarillo);
            flex-shrink: 0;
            opacity: 0.55;
            box-shadow: 0 0 8px rgba(255, 209, 0, 0.45);
        }
        .logo-bait-wrap {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            padding-left: 2px;
        }
        .logo-bait-wrap::before {
            content: "";
            position: absolute;
            inset: -30% -20%;
            background: radial-gradient(ellipse at center, rgba(255, 209, 0, 0.22) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .logo-bait {
            position: relative;
            z-index: 1;
            height: clamp(40px, 11vw, 52px);
            width: auto;
            max-width: min(140px, 38vw);
            object-fit: contain;
            filter:
                drop-shadow(0 0 12px rgba(255, 209, 0, 0.5))
                drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
            display: block;
        }
        .header .tag-prepago {
            position: absolute;
            top: 50%;
            right: var(--pad-x);
            transform: translateY(-50%);
        }
        .tag-prepago {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--bait-azul);
            color: var(--bait-blanco);
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: 999px;
        }
        /* Marca eSIM — «e» minúscula, sin espacio (no mostrar ESIM) */
        .esim-brand,
        .step-mark,
        .esim-mark {
            text-transform: none;
        }
        .esim-brand {
            display: inline;
        }
        .step-mark,
        .esim-mark {
            display: inline;
            color: var(--bait-amarillo);
            font-weight: 800;
            text-shadow: 0 0 14px rgba(255, 209, 0, 0.4);
        }

        /* Mostrar / ocultar por dispositivo */
        .banner-desktop-only { display: none !important; }
        .banner-mobile-only { display: block; }

        /* Hero banner */
        .hero-banner {
            width: 100%;
            margin: 0 auto 20px;
            padding: 0 0 16px;
            box-sizing: border-box;
            opacity: 0;
            transform: translateY(12px) scale(0.99);
        }
        .hero-banner.is-revealed {
            animation: hero-banner-in 1s cubic-bezier(0.22, 0.85, 0.28, 1) forwards;
        }
        @keyframes hero-banner-in {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        .hero-banner__frame {
            position: relative;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
        }
        .hero-banner__frame--mobile {
            width: 100%;
            max-width: none;
            border-radius: 0;
            border: none;
            border-bottom: 2px solid rgba(255, 209, 0, 0.35);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
            background: #080808;
            line-height: 0;
        }
        .hero-banner__img-mobile {
            display: block;
            width: 100%;
            max-width: 100%;
            height: auto;
            max-height: none;
            object-fit: contain;
            object-position: center top;
            margin: 0;
            position: relative;
            z-index: 1;
            transition: transform 0.25s ease;
            transform-origin: center center;
        }
        @keyframes hero-banner-image-heartbeat {
            0%, 100%, 56% { transform: scale(1); }
            8% { transform: scale(1.014); }
            16% { transform: scale(1); }
            24% { transform: scale(1.008); }
            32% { transform: scale(1); }
        }
        @keyframes hero-banner-frame-glow {
            0%, 100%, 56% {
                box-shadow:
                    0 14px 40px rgba(0, 0, 0, 0.5),
                    0 0 0 2px rgba(255, 209, 0, 0.4);
            }
            8% {
                box-shadow:
                    0 16px 42px rgba(0, 0, 0, 0.52),
                    0 0 0 2px rgba(255, 209, 0, 0.52),
                    0 0 20px rgba(255, 209, 0, 0.12);
            }
            16% {
                box-shadow:
                    0 14px 40px rgba(0, 0, 0, 0.5),
                    0 0 0 2px rgba(255, 209, 0, 0.4);
            }
            24% {
                box-shadow:
                    0 15px 41px rgba(0, 0, 0, 0.51),
                    0 0 0 2px rgba(255, 209, 0, 0.48),
                    0 0 14px rgba(255, 209, 0, 0.08);
            }
            32% {
                box-shadow:
                    0 14px 40px rgba(0, 0, 0, 0.5),
                    0 0 0 2px rgba(255, 209, 0, 0.4);
            }
        }
        /* Pulso sutil — banner principal y portabilidad */
        .hero-banner__img-mobile,
        .hero-banner__img-desktop,
        .porta-banner__link .porta-banner__img {
            animation: hero-banner-image-heartbeat 1.45s ease-in-out infinite;
        }
        .hero-banner__frame--desktop,
        .hero-banner__frame--mobile,
        .porta-banner__link--mobile,
        .porta-banner__link.banner-desktop-only {
            animation: hero-banner-frame-glow 1.45s ease-in-out infinite;
        }
        .hero-banner__tap-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 10px auto 0;
            padding: 0 var(--pad-x);
            font-size: clamp(0.72rem, 2.8vw, 0.85rem);
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--bait-amarillo);
            text-shadow: 0 0 16px rgba(255, 209, 0, 0.35);
        }
        .hero-banner__tap-label i {
            font-size: 1.15em;
            color: var(--bait-amarillo);
            display: inline-block;
            transform-origin: center bottom;
            animation: hero-tap-point-up 1.1s ease-in-out infinite;
        }
        @keyframes hero-tap-point-up {
            0%, 100% {
                transform: translateY(0);
            }
            35%, 55% {
                transform: translateY(-7px);
            }
        }
        .hero-banner__frame::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            border-radius: inherit;
            box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.25);
        }
        .hero-banner__glow {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            background: linear-gradient(
                118deg,
                rgba(255, 209, 0, 0.14) 0%,
                transparent 42%,
                transparent 58%,
                rgba(0, 153, 221, 0.1) 78%,
                rgba(232, 2, 128, 0.12) 100%
            );
            opacity: 0.9;
            animation: hero-glow-shift 7s ease-in-out infinite;
        }
        @keyframes hero-glow-shift {
            0%, 100% { opacity: 0.75; }
            50% { opacity: 1; }
        }
        .hero-banner__corner {
            position: absolute;
            width: clamp(20px, 5vw, 32px);
            height: clamp(20px, 5vw, 32px);
            z-index: 3;
            pointer-events: none;
            border: 3px solid var(--bait-amarillo);
            opacity: 0.7;
        }
        .hero-banner__corner--tl {
            top: 12px;
            left: 12px;
            border-right: none;
            border-bottom: none;
            border-radius: 10px 0 0 0;
        }
        .hero-banner__corner--br {
            bottom: 12px;
            right: 12px;
            border-left: none;
            border-top: none;
            border-radius: 0 0 10px 0;
        }
        .hero-banner__slides {
            display: grid;
            grid-template-areas: "slide";
            place-items: center;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        .hero-banner__slide {
            grid-area: slide;
            display: block;
            object-fit: contain;
            object-position: center center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.85s ease-in-out, visibility 0.85s ease-in-out;
        }
        .hero-banner__slide.is-active {
            opacity: 1;
            visibility: visible;
        }
        .hero-banner__frame--mobile .hero-banner__slide {
            width: 100%;
            height: auto;
        }
        .hero-banner__frame--desktop {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background:
                radial-gradient(ellipse 90% 80% at 50% 45%, rgba(255, 209, 0, 0.14) 0%, transparent 62%),
                linear-gradient(180deg, #121212 0%, #060606 48%, #060606 100%);
            line-height: 0;
        }
        .hero-banner__img-desktop {
            display: block;
            width: 100%;
            height: auto;
            max-height: min(68vh, 660px);
            object-fit: contain;
            object-position: center center;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            transition: transform 0.25s ease;
            transform-origin: center center;
        }
        .hero-banner__click-layer {
            position: absolute;
            inset: 0;
            z-index: 6;
            margin: 0;
            padding: 0;
            border: none;
            background: transparent;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }
        .hero-banner__frame:hover .hero-banner__click-layer,
        .hero-banner__frame:focus-within .hero-banner__click-layer {
            background: rgba(255, 209, 0, 0.04);
        }
        .hero-banner__click-layer:focus-visible {
            outline: 3px solid var(--bait-amarillo);
            outline-offset: -6px;
        }
        .hero-banner__frame:hover .hero-banner__img-desktop,
        .hero-banner__frame:hover .hero-banner__img-mobile,
        .hero-banner__frame:focus-within .hero-banner__img-desktop,
        .hero-banner__frame:focus-within .hero-banner__img-mobile,
        .porta-banner__link:hover .porta-banner__img,
        .porta-banner__link:focus-visible .porta-banner__img {
            animation: none;
            transform: scale(1.012);
        }
        .hero-banner__dots {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            display: flex;
            gap: 8px;
            pointer-events: none;
        }
        .hero-banner__dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.35);
            transition: background 0.25s ease, transform 0.25s ease;
        }
        .hero-banner__dot.is-active {
            background: var(--bait-amarillo);
            transform: scale(1.15);
        }
        @keyframes scroll-bounce {
            0%, 100% { transform: translateY(0); opacity: 0.35; }
            50% { transform: translateY(6px); opacity: 0.7; }
        }

        .section-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin: 8px 0 28px;
            padding: 0 8px;
        }
        .section-divider span {
            flex: 1;
            max-width: 120px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--bait-amarillo), transparent);
            opacity: 0.5;
        }
        .section-divider i {
            color: var(--bait-azul);
            font-size: 0.85rem;
            opacity: 0.7;
            animation: scroll-bounce 2s ease-in-out infinite;
        }

        /* Steps — experiencia premium */
        .steps-section {
            position: relative;
            padding-top: 12px;
            margin-top: 8px;
        }
        .steps-section::before {
            content: '';
            position: absolute;
            right: 0;
            top: 48px;
            bottom: 24px;
            width: 3px;
            border-radius: 3px;
            background: linear-gradient(
                180deg,
                transparent 0%,
                var(--bait-amarillo) 12%,
                var(--bait-azul) 50%,
                var(--bait-magenta) 88%,
                transparent 100%
            );
            opacity: 0.35;
            pointer-events: none;
        }
        .steps-section__lead {
            text-align: center;
            margin-bottom: 28px;
            padding: 0 8px;
        }
        .steps-section__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--bait-negro);
            background: linear-gradient(90deg, var(--bait-amarillo), #ffe566);
            border-radius: 999px;
            box-shadow: 0 4px 24px rgba(255, 209, 0, 0.35);
            margin-bottom: 10px;
        }
        .steps-section__eyebrow i {
            font-size: 0.85rem;
        }
        .steps-section__sub {
            font-size: 0.88rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.5;
            max-width: 420px;
            margin: 0 auto;
        }
        .section-title {
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--bait-amarillo);
            margin-bottom: 14px;
            text-align: right;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
            padding: 12px 18px 12px 14px;
            background: linear-gradient(270deg, rgba(255, 209, 0, 0.1) 0%, transparent 100%);
            border-radius: 14px 0 0 14px;
            border-right: 3px solid var(--bait-amarillo);
            text-shadow: 0 0 24px rgba(255, 209, 0, 0.2);
        }
        .section-title::before {
            content: '';
            width: 36px;
            height: 3px;
            background: linear-gradient(90deg, var(--bait-magenta), var(--bait-amarillo));
            border-radius: 2px;
            flex-shrink: 0;
            box-shadow: 0 0 12px rgba(255, 209, 0, 0.4);
        }
        .steps {
            display: flex;
            flex-direction: column;
            gap: 22px;
            position: relative;
        }
        .step-card {
            --step-accent: var(--bait-amarillo);
            --step-accent-rgb: 255, 209, 0;
            --step-num-fg: var(--bait-negro);
            background: linear-gradient(155deg, rgba(22, 22, 22, 0.92) 0%, rgba(0, 0, 0, 0.88) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 2px solid rgba(var(--step-accent-rgb), 0.28);
            border-radius: 22px;
            padding: 24px 26px;
            text-align: right;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(0.22, 0.85, 0.28, 1), border-color 0.3s ease, box-shadow 0.3s ease;
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }
        .step-card .step-card-shine {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                105deg,
                transparent 0%,
                rgba(255, 255, 255, 0.04) 45%,
                transparent 55%
            );
            transform: translateX(100%);
            transition: transform 0.7s ease;
            pointer-events: none;
            z-index: 0;
        }
        .step-card:hover .step-card-shine {
            transform: translateX(-100%);
        }
        .step-card--amarillo {
            --step-accent: var(--bait-amarillo);
            --step-accent-rgb: 255, 209, 0;
            --step-num-fg: var(--bait-negro);
        }
        .step-card--amarillo::after {
            top: auto;
            bottom: 0;
            height: 3px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 209, 0, 0.85) 22%,
                rgba(255, 209, 0, 0.95) 50%,
                rgba(255, 209, 0, 0.85) 78%,
                transparent 100%
            );
        }
        .step-card--azul {
            --step-accent: var(--bait-azul);
            --step-accent-rgb: 0, 153, 221;
            --step-num-fg: var(--bait-blanco);
        }
        .step-card--rosa {
            --step-accent: var(--bait-magenta);
            --step-accent-rgb: 232, 2, 128;
            --step-num-fg: var(--bait-blanco);
        }
        .step-card--rosa:hover {
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.35),
                0 0 22px rgba(232, 2, 128, 0.12);
        }

        /* Cuadro vincular — sin numeración de pasos */
        .vincula-card-wrap {
            margin: 0 0 28px;
        }
        .vincula-card-wrap .step-card {
            max-width: 100%;
        }

        /* Cierre paso 4 — texto libre + logo, invita a bajar a portabilidad */
        .plan-cierre {
            margin-top: 40px;
            padding: 0 0 20px;
            text-align: center;
            position: relative;
        }
        .plan-cierre__claims-band {
            position: relative;
            overflow: hidden;
            width: 100vw;
            max-width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            margin-bottom: 28px;
            padding: 22px max(var(--pad-x), env(safe-area-inset-right)) 24px max(var(--pad-x), env(safe-area-inset-left));
            box-sizing: border-box;
            background: linear-gradient(
                90deg,
                rgba(255, 209, 0, 0.06) 0%,
                rgba(255, 209, 0, 0.12) 50%,
                rgba(255, 209, 0, 0.06) 100%
            );
            border-top: 1px solid rgba(255, 209, 0, 0.22);
            border-bottom: 1px solid rgba(255, 209, 0, 0.22);
            box-shadow: 0 0 48px rgba(255, 209, 0, 0.08);
        }
        .plan-cierre__claims {
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: center;
            gap: 10px;
            list-style: none;
        }
        .plan-cierre__claim-line {
            display: block;
            width: 100%;
            font-size: clamp(1.45rem, 6.5vw, 2.35rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--bait-amarillo);
            text-align: center;
            text-shadow:
                0 0 28px rgba(255, 209, 0, 0.5),
                0 2px 0 rgba(0, 0, 0, 0.85);
            animation: claim-line-glow 4s ease-in-out infinite;
        }
        .plan-cierre__claim-line:nth-child(2) { animation-delay: -1.3s; }
        .plan-cierre__claim-line:nth-child(3) { animation-delay: -2.6s; }
        @keyframes claim-line-glow {
            0%, 100% {
                text-shadow:
                    0 0 28px rgba(255, 209, 0, 0.45),
                    0 2px 0 rgba(0, 0, 0, 0.85);
            }
            50% {
                text-shadow:
                    0 0 42px rgba(255, 209, 0, 0.75),
                    0 0 12px rgba(255, 209, 0, 0.35),
                    0 2px 0 rgba(0, 0, 0, 0.85);
            }
        }
        .plan-cierre__claims-band::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 209, 0, 0.12) 50%,
                transparent 100%
            );
            transform: translateX(-100%);
            animation: claims-band-sweep 8s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes claims-band-sweep {
            0%, 100% { transform: translateX(-100%); opacity: 0; }
            15% { opacity: 1; }
            50% { transform: translateX(100%); opacity: 1; }
            85% { opacity: 0; }
        }
        @media (min-width: 640px) {
            .plan-cierre__claims {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
            }
            .plan-cierre__claim-line {
                flex: 1 1 0;
                font-size: clamp(1.35rem, 2.8vw, 2.1rem);
                padding: 8px 6px;
            }
            .plan-cierre__claim-line + .plan-cierre__claim-line {
                border-left: 1px solid rgba(255, 209, 0, 0.25);
            }
        }
        @media (min-width: 1024px) {
            .plan-cierre__claim-line {
                font-size: clamp(1.6rem, 2.2vw, 2.5rem);
            }
        }
        .plan-cierre__logo {
            width: min(150px, 40vw);
            height: auto;
            margin: 4px auto 8px;
            display: block;
            object-fit: contain;
            filter:
                drop-shadow(0 0 16px rgba(255, 209, 0, 0.45))
                drop-shadow(0 0 28px rgba(255, 209, 0, 0.15));
            animation: logo-breathe 3.5s ease-in-out infinite;
        }
        .plan-cierre .porta-banner {
            margin-top: 0;
            padding-bottom: 8px;
        }
        .plan-cierre__info {
            margin: 20px auto 0;
            max-width: min(100%, 640px);
            text-align: center;
        }
        .plan-cierre__info-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: var(--touch-min);
            padding: 0 22px;
            font-family: inherit;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            color: var(--bait-amarillo);
            background: rgba(255, 209, 0, 0.08);
            border: 1px solid rgba(255, 209, 0, 0.45);
            border-radius: 999px;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s, transform 0.2s;
        }
        .plan-cierre__info-toggle:hover {
            background: rgba(255, 209, 0, 0.14);
            border-color: rgba(255, 209, 0, 0.65);
            transform: translateY(-1px);
        }
        .plan-cierre__info-toggle:focus-visible {
            outline: 3px solid var(--bait-amarillo);
            outline-offset: 3px;
        }
        .plan-cierre__info-chevron {
            font-size: 0.72rem;
            transition: transform 0.25s ease;
        }
        .plan-cierre__info-toggle[aria-expanded="true"] .plan-cierre__info-chevron {
            transform: rotate(180deg);
        }
        .plan-cierre__info-toggle .label-less {
            display: none;
        }
        .plan-cierre__info-toggle[aria-expanded="true"] .label-more {
            display: none;
        }
        .plan-cierre__info-toggle[aria-expanded="true"] .label-less {
            display: inline;
        }
        .plan-cierre__disclaimer {
            margin: 14px auto 0;
            padding: 16px 18px;
            max-width: 100%;
            text-align: left;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 209, 0, 0.2);
            border-radius: 12px;
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            padding-top: 0;
            padding-bottom: 0;
            border-color: transparent;
            transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
        }
        .plan-cierre__disclaimer.is-open {
            max-height: 1200px;
            opacity: 1;
            padding: 16px 18px;
            border-color: rgba(255, 209, 0, 0.2);
        }
        .plan-cierre__disclaimer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .plan-cierre__disclaimer-list li {
            font-size: 0.74rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.55;
            margin-bottom: 12px;
        }
        .plan-cierre__disclaimer-list li:last-child {
            margin-bottom: 0;
        }
        .plan-cierre__disclaimer-mark {
            display: inline;
            color: var(--bait-amarillo);
            font-weight: 800;
            text-shadow: 0 0 10px rgba(255, 209, 0, 0.25);
        }
        @keyframes logo-breathe {
            0%, 100% { transform: scale(1); filter: drop-shadow(0 0 16px rgba(255, 209, 0, 0.4)); }
            50% { transform: scale(1.04); filter: drop-shadow(0 0 28px rgba(255, 209, 0, 0.65)); }
        }
        .step-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(var(--step-accent-rgb), 0.55), transparent);
            pointer-events: none;
        }
        .step-card:hover {
            transform: translateX(-6px) translateY(-2px);
            border-color: rgba(var(--step-accent-rgb), 0.55);
            box-shadow:
                0 16px 48px rgba(0, 0, 0, 0.45),
                0 0 36px rgba(var(--step-accent-rgb), 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }
        .step-card > *:not(.step-card-shine) {
            position: relative;
            z-index: 1;
        }
        .step-card::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--step-accent);
            border-radius: 0 20px 20px 0;
        }
        .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--step-accent);
            color: var(--step-num-fg);
            font-weight: 900;
            font-size: 0.95rem;
            border-radius: 50%;
            margin-bottom: 12px;
            box-shadow: 0 0 20px rgba(var(--step-accent-rgb), 0.45);
        }
        .step-card-head {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
            margin-bottom: 8px;
        }
        .step-card-icon {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            font-size: 1.2rem;
            background: rgba(var(--step-accent-rgb), 0.22);
            color: var(--step-accent);
            border: 1px solid rgba(var(--step-accent-rgb), 0.45);
            box-shadow: 0 0 20px rgba(var(--step-accent-rgb), 0.28);
        }
        .step-card h3 {
            font-size: 1.05rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 0;
            flex: 1;
            color: rgba(255, 255, 255, 0.96);
        }
        .step-card--azul .step-card-head {
            border-bottom: 2px solid rgba(0, 153, 221, 0.35);
            padding-bottom: 10px;
            margin-bottom: 12px;
        }
        .step-card--amarillo .step-card-head {
            border-bottom: 2px solid rgba(255, 209, 0, 0.35);
            padding-bottom: 10px;
            margin-bottom: 12px;
        }
        .step-card--rosa .step-card-head {
            border-bottom: 2px solid rgba(232, 2, 128, 0.35);
            padding-bottom: 10px;
            margin-bottom: 12px;
        }
        .step-detail-list {
            margin-top: 10px;
            padding: 0;
            list-style: none;
            text-align: inherit;
        }
        .step-detail-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.45;
            margin-bottom: 6px;
        }
        .step-detail-list li i {
            color: var(--step-accent);
            margin-top: 3px;
            font-size: 0.7rem;
            flex-shrink: 0;
        }
        .step-card--amarillo .step-install-note {
            margin: 14px 0 6px;
            padding: 12px 14px;
            text-align: center;
            font-size: 0.95rem;
            font-weight: 900;
            line-height: 1.45;
            letter-spacing: 0.03em;
            color: var(--bait-amarillo);
            text-shadow: 0 0 14px rgba(255, 209, 0, 0.4);
            background: rgba(255, 209, 0, 0.1);
            border: 1px solid rgba(255, 209, 0, 0.35);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(255, 209, 0, 0.12);
        }
        .step-card p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        /* Compatibility form */
        .compat-form {
            margin-top: 16px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
            text-align: right;
        }
        .field-hint {
            display: block;
            margin-top: 6px;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.4;
            font-weight: 500;
        }
        .field label {
            display: block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--bait-gris);
            margin-bottom: 6px;
            transition: color 0.2s ease;
        }
        .field label i {
            margin-right: 6px;
            color: var(--bait-amarillo);
            transition: color 0.2s ease, filter 0.2s ease;
        }
        .field select,
        .field input {
            width: 100%;
            min-height: var(--touch-min);
            padding: 12px 14px;
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.65);
            color: var(--bait-blanco);
            font-family: inherit;
            font-size: 16px;
            font-weight: 600;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .field input::placeholder {
            color: rgba(255, 255, 255, 0.35);
            transition: color 0.2s ease;
        }
        .field select:focus,
        .field input:focus {
            outline: none;
            border-color: var(--bait-azul);
        }
        /* Paso 1 — acentos azules en formulario */
        .step-card--azul .field label i {
            color: #5cc8f0;
        }
        .step-card--azul .field label[for="telefono"] i {
            color: #9ee0ff;
            filter: drop-shadow(0 0 8px rgba(0, 153, 221, 0.65));
        }
        .step-card--azul .field input {
            border-color: rgba(255, 255, 255, 0.14);
        }
        .step-card--azul .field input:focus {
            border-color: var(--bait-azul);
            box-shadow:
                0 0 0 3px rgba(0, 153, 221, 0.16),
                0 0 22px rgba(0, 153, 221, 0.14);
        }
        .step-card--azul .field:focus-within label {
            color: rgba(160, 220, 255, 0.98);
        }
        .step-card--azul .field:focus-within label i {
            color: #c8eeff;
            filter: drop-shadow(0 0 6px rgba(0, 153, 221, 0.5));
        }
        .step-card--azul .field:focus-within label[for="telefono"] i {
            color: #e0f6ff;
            filter: drop-shadow(0 0 10px rgba(0, 153, 221, 0.75));
        }
        .step-card--azul .field:focus-within input::placeholder {
            color: rgba(0, 153, 221, 0.42);
        }
        .step-card--azul .btn-check {
            background: var(--bait-azul);
            color: var(--bait-blanco);
        }
        .step-card--azul .btn-check:hover:not(:disabled) {
            box-shadow: 0 8px 24px rgba(0, 153, 221, 0.45);
        }
        .btn-check {
            grid-column: 1 / -1;
            margin-top: 4px;
            min-height: var(--touch-min);
            padding: 14px 24px;
            background: var(--bait-amarillo);
            color: var(--bait-negro);
            border: none;
            border-radius: 999px;
            font-family: inherit;
            font-weight: 800;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-check:hover:not(:disabled) {
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(255, 209, 0, 0.45);
        }
        a.btn-check {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-sizing: border-box;
        }
        .btn-check:disabled {
            opacity: 0.65;
            cursor: wait;
        }
        .btn-check .btn-spinner {
            display: none;
            width: 1em;
            height: 1em;
            border: 2px solid rgba(255, 255, 255, 0.35);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
            vertical-align: -0.15em;
            margin-right: 8px;
        }
        .btn-check.is-loading .btn-spinner { display: inline-block; }
        .btn-check.is-loading .btn-label { opacity: 0.85; }
        @keyframes spin { to { transform: rotate(360deg); } }
        /* Modal resultado compatibilidad */
        .compat-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: max(20px, var(--safe-top)) max(20px, var(--safe-right)) max(20px, var(--safe-bottom)) max(20px, var(--safe-left));
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .compat-modal.is-open {
            opacity: 1;
            visibility: visible;
        }
        .compat-modal[hidden] { display: none; }
        .compat-modal.is-open[hidden] { display: flex; }
        body.modal-open { overflow: hidden; }
        .compat-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.72);
            backdrop-filter: blur(4px);
        }
        .compat-modal-card {
            position: relative;
            z-index: 1;
            width: min(100%, 400px);
            background: var(--bait-blanco);
            color: #1a1a1a;
            border-radius: 20px;
            padding: 28px 24px 24px;
            text-align: center;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
            animation: modal-pop 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
        }
        @keyframes modal-pop {
            from { transform: scale(0.9) translateY(12px); opacity: 0; }
            to { transform: scale(1) translateY(0); opacity: 1; }
        }
        .compat-modal-yaavs {
            height: 32px;
            width: auto;
            margin: 0 auto 16px;
            display: block;
            filter: brightness(0);
            opacity: 0.85;
        }
        .compat-modal-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
        }
        .compat-modal-icon--success {
            background: rgba(34, 197, 94, 0.15);
            color: #16a34a;
        }
        .compat-modal-icon--warning {
            background: rgba(255, 209, 0, 0.25);
            color: #b8860b;
        }
        .compat-modal-icon--error {
            background: rgba(238, 56, 35, 0.12);
            color: var(--bait-rojo);
        }
        .compat-modal-text {
            font-size: 0.95rem;
            line-height: 1.55;
            color: #333;
            margin-bottom: 8px;
        }
        .compat-modal-text strong {
            color: #000;
        }
        .compat-modal-extra {
            font-size: 0.82rem;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.45;
        }
        .compat-modal-btn {
            width: 100%;
            min-height: var(--touch-min);
            padding: 14px 24px;
            border: none;
            border-radius: 999px;
            background: var(--bait-amarillo);
            color: var(--bait-negro);
            font-family: inherit;
            font-size: 1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .compat-modal-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(255, 209, 0, 0.45);
        }

        /* Modal carga verificación — logo Bait animado */
        .compat-loader .compat-modal-card {
            background: var(--bait-negro);
            border: 2px solid rgba(255, 209, 0, 0.28);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 48px rgba(255, 209, 0, 0.12);
        }
        .compat-loader-card {
            padding: 36px 28px 32px;
        }
        .compat-loader-gif {
            width: min(180px, 55vw);
            height: auto;
            margin: 0 auto 20px;
            display: block;
            object-fit: contain;
            filter:
                drop-shadow(0 0 16px rgba(255, 209, 0, 0.55))
                drop-shadow(0 0 32px rgba(255, 209, 0, 0.2));
        }
        .compat-loader-text {
            font-size: 0.85rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin: 0;
        }
        .compat-loader-sub {
            margin: 10px 0 0;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.45;
        }

        /* CTAs in steps */
        .btn-step {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 14px;
            padding: 12px 22px;
            background: var(--bait-amarillo);
            color: var(--bait-negro);
            text-decoration: none;
            font-weight: 800;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-step:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 209, 0, 0.45);
        }
        .step-card--amarillo .btn-step {
            background: var(--bait-amarillo);
            color: var(--bait-negro);
        }
        .step-card--amarillo .btn-step:hover {
            box-shadow: 0 6px 20px rgba(255, 209, 0, 0.45);
        }
        .step-card__cta {
            display: flex;
            justify-content: center;
            margin-top: 14px;
            width: 100%;
        }
        .step-card--rosa .btn-step {
            background: var(--bait-magenta);
            color: var(--bait-blanco);
            border: none;
        }
        .step-card--rosa .btn-step:hover {
            box-shadow: 0 6px 22px rgba(232, 2, 128, 0.45);
        }
        .step-vincula-registro {
            margin: 16px 0 10px;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--bait-gris);
        }
        .download-btns {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 14px;
        }
        .hero-download {
            width: 100%;
            max-width: var(--wrap-max);
            margin: 0 auto 24px;
            padding: 0 var(--pad-x);
            box-sizing: border-box;
        }
        .hero-download__btns {
            display: flex;
            flex-direction: row;
            align-items: stretch;
            gap: 10px;
            margin-top: 0;
        }
        .hero-download__btns .btn-step {
            flex: 1 1 0;
            min-width: 0;
            margin-top: 0;
            justify-content: center;
            text-align: center;
            min-height: var(--touch-min);
            padding: 12px 16px;
            font-size: clamp(0.78rem, 2.8vw, 0.92rem);
            line-height: 1.2;
            letter-spacing: 0.04em;
        }
        .hero-download__btns .btn-step i {
            font-size: 1.35rem;
            flex-shrink: 0;
        }
        @media (min-width: 420px) {
            .download-btns {
                flex-direction: row;
                flex-wrap: wrap;
            }
        }
        .download-btns .btn-step {
            flex: 1;
            min-width: min(100%, 200px);
            margin-top: 0;
            justify-content: center;
            min-height: var(--touch-min);
            padding: 12px 18px;
        }
        .download-btns .btn-step i {
            font-size: 1.35rem;
            line-height: 1;
        }
        .btn-step--android i { color: #3ddc84; }
        .btn-step--ios i { color: var(--bait-blanco); }
        button.btn-step {
            font-family: inherit;
            appearance: none;
            -webkit-appearance: none;
            text-align: center;
        }

        /* Modal descarga — edad y género */
        .download-modal-card {
            text-align: left;
        }
        .download-modal-title {
            font-size: 1.1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #111;
            margin-bottom: 8px;
            text-align: center;
        }
        .download-modal-sub {
            font-size: 0.85rem;
            color: #555;
            line-height: 1.45;
            margin-bottom: 20px;
            text-align: center;
        }
        .download-modal-form .field {
            margin-bottom: 16px;
            text-align: left;
        }
        .download-modal-form .field label,
        .download-modal-form .field-label {
            display: block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #666;
            margin-bottom: 8px;
        }
        .download-modal-form .field select {
            width: 100%;
            min-height: var(--touch-min);
            padding: 12px 14px;
            border: 2px solid #ddd;
            border-radius: 12px;
            background: #f8f8f8;
            color: #111;
            font-family: inherit;
            font-size: 16px;
            font-weight: 600;
        }
        .download-modal-form .field select:focus {
            outline: none;
            border-color: var(--bait-azul);
            box-shadow: 0 0 0 3px rgba(0, 153, 221, 0.2);
        }
        .gender-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }
        .gender-option {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 10px 12px;
            border: 2px solid #ddd;
            border-radius: 12px;
            background: #f8f8f8;
            font-size: 0.82rem;
            font-weight: 700;
            color: #333;
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
        }
        .gender-option input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
            pointer-events: none;
        }
        .gender-option:has(input:checked) {
            border-color: var(--bait-amarillo);
            background: rgba(255, 209, 0, 0.2);
            color: #000;
            box-shadow: 0 0 0 1px rgba(255, 209, 0, 0.35);
        }
        .gender-option:focus-within {
            border-color: var(--bait-azul);
        }
        .download-modal-error {
            font-size: 0.8rem;
            color: var(--bait-rojo);
            margin-bottom: 12px;
            text-align: center;
            font-weight: 600;
        }
        .download-modal-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 4px;
        }
        .download-modal-cancel {
            width: 100%;
            min-height: 44px;
            padding: 10px 16px;
            border: none;
            background: transparent;
            color: #666;
            font-family: inherit;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            cursor: pointer;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .download-modal-cancel:hover {
            color: #111;
        }

        .platform-choice-card {
            text-align: center;
        }
        .platform-choice-title {
            font-size: 1.15rem;
            font-weight: 800;
            color: #111;
            margin-bottom: 18px;
            line-height: 1.3;
        }
        .platform-choice-sub {
            font-size: 0.88rem;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.45;
        }
        .platform-choice-btns {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 14px;
        }
        @media (min-width: 420px) {
            .platform-choice-btns {
                flex-direction: row;
            }
            .platform-choice-btns .btn-step {
                flex: 1;
                margin-top: 0;
                justify-content: center;
            }
        }
        .platform-choice-btns .btn-step {
            width: 100%;
            margin-top: 0;
            min-height: var(--touch-min);
        }

        /* Portability banner */
        @media (min-width: 600px) {
            .step-card-head { justify-content: flex-start; }
        }

        #porta-banner {
            display: none !important;
            scroll-margin-top: 20px;
        }
        .porta-banner {
            width: 100%;
            margin-top: 8px;
            padding: 0 0 28px;
            box-sizing: border-box;
            position: relative;
        }
        .porta-banner__link {
            position: relative;
            z-index: 1;
            display: block;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            border: none;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
            transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        .porta-banner__link:hover {
            opacity: 0.96;
            box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5), 0 0 32px rgba(232, 2, 128, 0.2);
        }
        .porta-banner__link:active {
            transform: scale(0.995);
        }
        .porta-banner__link:focus-visible {
            outline: 3px solid var(--bait-amarillo);
            outline-offset: 4px;
        }
        .porta-banner__img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: contain;
            object-position: center;
            transform-origin: center center;
        }
        .porta-banner__link--mobile {
            width: 100%;
            max-width: none;
            margin: 0 0 -4px;
            border-radius: 0;
            overflow: hidden;
            border: none;
            border-bottom: 2px solid rgba(255, 209, 0, 0.35);
            line-height: 0;
            background: #080808;
        }
        .porta-banner__link--mobile .porta-banner__img {
            width: 100%;
            max-width: 100%;
            max-height: none;
            height: auto;
            object-fit: contain;
            object-position: center top;
            margin: 0;
        }
        .porta-banner__link.banner-desktop-only {
            overflow: hidden;
            border: 2px solid rgba(255, 209, 0, 0.35);
        }
        .porta-banner__cta {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            padding: 18px max(var(--pad-x), 16px) 4px;
            box-sizing: border-box;
        }
        .porta-banner__btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: var(--touch-min);
            width: min(100%, 400px);
            padding: 16px 28px;
            background: linear-gradient(135deg, var(--bait-magenta) 0%, #b8026e 55%, var(--bait-magenta) 100%);
            background-size: 200% 200%;
            color: var(--bait-blanco);
            text-decoration: none;
            font-family: inherit;
            font-weight: 900;
            font-size: clamp(0.82rem, 3.5vw, 0.95rem);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-radius: 999px;
            border: 2px solid rgba(255, 209, 0, 0.55);
            box-shadow:
                0 10px 32px rgba(232, 2, 128, 0.45),
                0 0 24px rgba(255, 209, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }
        .porta-banner__btn i {
            color: var(--bait-amarillo);
            font-size: 1.1rem;
            filter: drop-shadow(0 0 8px rgba(255, 209, 0, 0.5));
        }
        .porta-banner__btn:hover {
            transform: translateY(-3px);
            border-color: var(--bait-amarillo);
            box-shadow:
                0 14px 40px rgba(232, 2, 128, 0.55),
                0 0 32px rgba(255, 209, 0, 0.25);
        }
        .porta-banner__btn:active {
            transform: translateY(-1px) scale(0.99);
        }
        .porta-banner__btn:focus-visible {
            outline: 3px solid var(--bait-amarillo);
            outline-offset: 4px;
        }
        .btn-porta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--bait-magenta);
            color: var(--bait-blanco);
            text-decoration: none;
            font-weight: 900;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            position: relative;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-porta:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 30px rgba(232, 2, 128, 0.5);
        }

        /* Footer legal */
        .legal {
            margin-top: 36px;
            padding: 16px 18px;
            background: var(--bait-gris);
            color: var(--bait-negro);
            border-radius: 12px;
            font-size: 0.7rem;
            line-height: 1.55;
            text-align: justify;
        }
        .legal strong {
            display: block;
            margin-bottom: 6px;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .legal > p a {
            color: var(--bait-azul);
            font-weight: 700;
        }

        .animate-in {
            opacity: 0;
            transform: translateY(24px);
            animation: fadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== Móvil — banner ancho completo ===== */
        @media (max-width: 767px) {
            .hero-banner .banner-desktop-only,
            .hero-banner__frame--desktop.banner-desktop-only {
                display: none !important;
            }
            .hero-banner {
                width: 100vw;
                max-width: 100vw;
                margin-left: calc(50% - 50vw);
                margin-right: calc(50% - 50vw);
                padding: 0;
            }
            .hero-banner__frame--mobile {
                width: 100%;
                margin: 0;
            }
            .hero-banner__img-mobile {
                width: 100%;
                max-width: 100%;
                object-fit: contain;
                object-position: center top;
            }
            .hero-banner__frame--mobile::before {
                border-radius: 0;
            }
            .hero-banner__frame--mobile .hero-banner__corner {
                display: none;
            }
            .porta-banner {
                width: 100vw;
                max-width: 100vw;
                margin-left: calc(50% - 50vw);
                margin-right: calc(50% - 50vw);
                margin-top: 0;
                padding: 0 0 20px;
            }
            .porta-banner__cta {
                width: 100%;
                padding: 14px max(var(--pad-x), 16px) 8px;
            }
            .porta-banner__btn {
                width: 100%;
                max-width: none;
            }
            .porta-banner__link--mobile {
                width: 100%;
                max-width: none;
            }
            .porta-banner__link--mobile .porta-banner__img {
                width: 100%;
                max-width: 100%;
                max-height: none;
            }
            .steps-section::before { display: none; }
            .decor-beam,
            .decor-hex,
            .decor-pulse-ring,
            .decor-badge-float,
            .decor-spark--9,
            .decor-spark--10,
            .decor-spark--11,
            .decor-spark--12,
            .decor-icon--21,
            .decor-icon--22,
            .decor-icon--23,
            .decor-icon--24 { display: none !important; }
            .plan-cierre__claim-line {
                text-transform: uppercase;
                letter-spacing: 0.04em;
            }
            .plan-cierre__claim-line:nth-child(2) {
                color: var(--bait-blanco);
                animation: claim-line-glow-white 4s ease-in-out infinite;
                animation-delay: -1.3s;
            }
        }
        @keyframes claim-line-glow-white {
            0%, 100% {
                text-shadow:
                    0 0 20px rgba(255, 255, 255, 0.35),
                    0 2px 0 rgba(0, 0, 0, 0.85);
            }
            50% {
                text-shadow:
                    0 0 34px rgba(255, 255, 255, 0.55),
                    0 0 10px rgba(255, 255, 255, 0.25),
                    0 2px 0 rgba(0, 0, 0, 0.85);
            }
        }

        /* ===== Escritorio ===== */
        @media (min-width: 768px) {
            .banner-desktop-only { display: block !important; }
            .banner-mobile-only { display: none !important; }
            .decor-grid { opacity: 0.55; }
            .decor-orb { opacity: 0.7; }
            .decor-beam,
            .decor-hex,
            .decor-pulse-ring,
            .decor-badge-float,
            .decor-icon--9,
            .decor-icon--10,
            .decor-icon--11,
            .decor-icon--12,
            .decor-icon--13,
            .decor-icon--14,
            .decor-icon--15,
            .decor-icon--16,
            .decor-icon--17,
            .decor-icon--18,
            .decor-icon--19,
            .decor-icon--20,
            .decor-icon--21,
            .decor-icon--22,
            .decor-icon--23,
            .decor-icon--24,
            .decor-phone--2,
            .decor-phone--3,
            .decor-phone--4,
            .decor-sim--3,
            .decor-sim--4,
            .decor-sim--5,
            .decor-chip--4,
            .decor-chip--5,
            .decor-chip--6,
            .decor-spark--5,
            .decor-spark--6,
            .decor-spark--7,
            .decor-spark--8,
            .decor-spark--9,
            .decor-spark--10,
            .decor-spark--11,
            .decor-spark--12 { display: none !important; }
            .decor-icon {
                --decor-o: 0.26;
                filter: drop-shadow(0 0 10px rgba(255, 209, 0, 0.25));
            }
            .hero-banner {
                width: 100vw;
                max-width: 100vw;
                margin-left: calc(50% - 50vw);
                margin-right: calc(50% - 50vw);
                margin-bottom: 40px;
                padding: 0 0 8px;
            }
            .hero-banner__frame--desktop {
                max-width: none;
                margin: 0;
                padding: clamp(12px, 2vw, 28px) clamp(20px, 4vw, 56px) clamp(16px, 2.5vw, 32px);
                border-radius: 0;
                border: none;
                border-top: 1px solid rgba(255, 209, 0, 0.2);
                border-bottom: 3px solid rgba(255, 209, 0, 0.45);
                box-shadow:
                    0 28px 64px rgba(0, 0, 0, 0.55),
                    inset 0 1px 0 rgba(255, 255, 255, 0.04);
                background:
                    radial-gradient(ellipse 100% 85% at 50% 40%, rgba(255, 209, 0, 0.18) 0%, transparent 58%),
                    radial-gradient(ellipse 40% 50% at 0% 50%, rgba(0, 153, 221, 0.08) 0%, transparent 55%),
                    radial-gradient(ellipse 35% 45% at 100% 60%, rgba(232, 2, 128, 0.08) 0%, transparent 50%),
                    linear-gradient(180deg, #141414 0%, #050505 100%);
                min-height: min(42vh, 380px);
            }
            .hero-banner__frame--desktop::after {
                content: '';
                position: absolute;
                inset: 0;
                z-index: 2;
                pointer-events: none;
                background: linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.65) 0%,
                    transparent 14%,
                    transparent 86%,
                    rgba(0, 0, 0, 0.65) 100%
                );
            }
            .hero-banner__img-desktop {
                width: 100%;
                max-width: min(1200px, 96vw);
                max-height: none;
                height: auto;
                object-fit: contain;
                object-position: center center;
                filter:
                    drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55))
                    drop-shadow(0 0 48px rgba(255, 209, 0, 0.12));
            }
            .hero-banner__frame--desktop .hero-banner__glow {
                opacity: 0.65;
                animation: hero-glow-shift 8s ease-in-out infinite;
            }
            .hero-banner__frame--desktop .hero-banner__corner {
                opacity: 0.85;
                width: clamp(28px, 3vw, 40px);
                height: clamp(28px, 3vw, 40px);
            }
            .hero-banner__frame--desktop .hero-banner__corner--tl {
                top: clamp(16px, 2.5vw, 28px);
                left: clamp(16px, 2.5vw, 28px);
            }
            .hero-banner__frame--desktop .hero-banner__corner--br {
                bottom: clamp(16px, 2.5vw, 28px);
                right: clamp(16px, 2.5vw, 28px);
            }
            .steps-section {
                margin-top: 16px;
                padding-top: 20px;
            }
            .steps-section__lead {
                margin-bottom: 36px;
            }
            .steps {
                gap: 26px;
            }
            .steps .step-card:only-child {
                grid-column: 1 / -1;
            }
            .plan-cierre {
                margin-top: 52px;
                padding-bottom: 24px;
            }
            .plan-cierre__logo {
                margin-bottom: 10px;
            }
            .plan-cierre .porta-banner {
                width: 100vw;
                max-width: 100vw;
                margin-left: calc(50% - 50vw);
                margin-right: calc(50% - 50vw);
                margin-top: 0;
                padding: 0 0 8px;
            }
            .plan-cierre .porta-banner__cta {
                padding: 20px var(--pad-x) 8px;
            }
            .plan-cierre .porta-banner__link.banner-desktop-only {
                max-width: none;
                width: 100%;
                margin: 0 auto;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: clamp(12px, 2vw, 28px) clamp(20px, 4vw, 56px) clamp(16px, 2.5vw, 32px);
                border-radius: 0;
                border: none;
                border-top: 1px solid rgba(255, 209, 0, 0.2);
                border-bottom: 3px solid rgba(255, 209, 0, 0.45);
                box-shadow:
                    0 28px 64px rgba(0, 0, 0, 0.55),
                    inset 0 1px 0 rgba(255, 255, 255, 0.04);
                background:
                    radial-gradient(ellipse 100% 85% at 50% 40%, rgba(255, 209, 0, 0.18) 0%, transparent 58%),
                    radial-gradient(ellipse 40% 50% at 0% 50%, rgba(0, 153, 221, 0.08) 0%, transparent 55%),
                    radial-gradient(ellipse 35% 45% at 100% 60%, rgba(232, 2, 128, 0.08) 0%, transparent 50%),
                    linear-gradient(180deg, #141414 0%, #050505 100%);
                min-height: min(42vh, 380px);
                line-height: 0;
            }
            .plan-cierre .porta-banner__link.banner-desktop-only:hover,
            .plan-cierre .porta-banner__link.banner-desktop-only:focus-visible {
                opacity: 1;
            }
            .porta-banner__link.banner-desktop-only .porta-banner__img {
                display: block;
                width: auto;
                max-width: min(1200px, 96vw);
                max-height: min(42vh, 380px);
                height: auto;
                margin: 0 auto;
                flex-shrink: 0;
                object-fit: contain;
                object-position: center center;
                filter:
                    drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55))
                    drop-shadow(0 0 48px rgba(255, 209, 0, 0.12));
            }
            .hero-banner__frame--desktop::before {
                border-radius: 0;
                box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.15);
                z-index: 3;
            }
        }

        @media (max-width: 767px) {
            .step-card--azul .step-card__cta .btn-check {
                width: 100%;
                max-width: 100%;
                justify-content: center;
                text-align: center;
            }
            .step-card--azul .step-card__cta .btn-label {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                gap: 6px;
                width: 100%;
                line-height: 1.25;
            }
            .step-card--azul .step-card__cta .btn-label i {
                margin: 0;
            }
        }

        @media (max-width: 480px) {
            :root { --pad-x: 16px; --touch-min: 52px; }
            .header { padding: 12px var(--pad-x) 10px; }
            .header-logos { max-width: calc(100% - 76px); padding: 8px 14px; gap: 8px; }
            .logo-yaavs { height: 18px; max-width: 72px; }
            .logo-bait { height: clamp(36px, 10vw, 42px); max-width: min(110px, 36vw); }
            .header .tag-prepago { font-size: 0.58rem; padding: 6px 10px; }
            .hero-banner { padding-bottom: 8px; }
            .hero-banner__img-mobile { max-height: none; }
            .step-card { padding: 18px 16px; text-align: left; }
            .section-title {
                text-align: left;
                justify-content: flex-start;
                font-size: 0.75rem;
                border-right: none;
                border-left: 3px solid var(--bait-amarillo);
                border-radius: 0 14px 14px 0;
                background: linear-gradient(90deg, rgba(255, 209, 0, 0.1) 0%, transparent 100%);
            }
            .hero-download__btns .btn-step {
                padding: 12px 14px;
                font-size: clamp(0.75rem, 3vw, 0.88rem);
            }
            .btn-porta { width: 100%; justify-content: center; }
            .cookie-banner-inner { padding: 14px 16px; border-radius: 14px; }
            .cookie-banner-actions { flex-direction: column; }
            .cookie-banner-actions .btn-cookie { width: 100%; flex: 1 1 auto; }
            .compat-modal-card { width: min(calc(100% - 8px), 400px); padding: 22px 18px; }
            .decor-icon--15, .decor-icon--16, .decor-icon--17,
            .decor-icon--18, .decor-icon--19, .decor-icon--20,
            .decor-phone--3, .decor-phone--4, .decor-sim--4, .decor-sim--5,
            .decor-chip--5, .decor-chip--6 { display: none; }
        }

        @media (max-width: 380px) {
            :root { --pad-x: 14px; }
            .header-logos { max-width: 100%; padding: 8px 14px; }
        }

        @media (max-width: 420px) {
            .header .tag-prepago {
                position: static;
                transform: none;
                margin-top: 10px;
            }
            .header-logos { max-width: calc(100% - 8px); padding: 8px 12px; }
        }

        /* ===== Teléfono grande / phablet ===== */
        @media (min-width: 481px) and (max-width: 767px) {
            :root { --pad-x: 24px; --wrap-max: 560px; }
            .steps { gap: 18px; }
            .hero-banner__img-mobile { max-height: none; }
        }

        /* ===== Tablet ===== */
        @media (min-width: 600px) {
            :root { --pad-x: 32px; --wrap-max: 680px; }
            .header-logos { max-width: calc(100% - 100px); padding: 12px 22px; gap: 14px; }
            .logo-yaavs { height: 24px; max-width: 92px; }
            .logo-bait { height: 50px; max-width: 145px; }
            .header .tag-prepago { font-size: 0.7rem; padding: 8px 14px; }
            .steps {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 18px;
            }
            .step-card { text-align: left; }
            .section-title { text-align: left; }
            .compat-form { text-align: left; }
        }
        @media (min-width: 600px) and (max-width: 767px) {
            .hero-banner { padding-bottom: 16px; }
            .hero-banner__img-mobile { max-height: none; }
        }

        @media (min-width: 768px) {
            :root { --wrap-max: 820px; }
            .header { padding: 20px var(--pad-x) 16px; }
            .header-logos { max-width: calc(100% - 110px); padding: 12px 26px; }
            .step-card { padding: 26px 28px; }
            .step-card h3 { font-size: 1.15rem; }
            .legal { font-size: 0.75rem; padding: 20px 24px; }
            .btn-step, .btn-porta { padding: 14px 28px; font-size: 0.85rem; }
        }

        /* ===== Laptop / desktop ===== */
        @media (min-width: 1024px) {
            :root { --wrap-max: 1040px; --pad-x: 40px; }
            .desktop-flanks { display: block; }
            .page-bg__vignette {
                background: radial-gradient(ellipse 62% 70% at 50% 45%, transparent 38%, rgba(0, 0, 0, 0.48) 100%);
            }
            .decor-grid {
                opacity: 0.72;
                mask-image: radial-gradient(ellipse 52% 75% at 50% 42%, transparent 36%, #000 72%);
            }
            .decor-orb { opacity: 0.85; filter: blur(70px); }
            .decor-orb--yellow { top: 6%; right: 1%; width: min(340px, 22vw); height: min(340px, 22vw); }
            .decor-orb--blue { bottom: 18%; left: 0; width: min(280px, 20vw); height: min(280px, 20vw); }
            .decor-orb--magenta { top: 38%; right: 2%; width: min(240px, 16vw); height: min(240px, 16vw); }
            .decor-orb--yellow-soft { bottom: 6%; left: 42%; }
            .decor-beam,
            .decor-hex,
            .decor-pulse-ring,
            .decor-badge-float,
            .decor-icon--9,
            .decor-icon--10,
            .decor-icon--11,
            .decor-icon--12,
            .decor-icon--13,
            .decor-icon--14,
            .decor-icon--15,
            .decor-icon--16,
            .decor-icon--17,
            .decor-icon--18,
            .decor-icon--19,
            .decor-icon--20,
            .decor-icon--21,
            .decor-icon--22,
            .decor-icon--23,
            .decor-icon--24,
            .decor-phone--2,
            .decor-phone--3,
            .decor-phone--4,
            .decor-sim--3,
            .decor-sim--4,
            .decor-sim--5,
            .decor-chip--4,
            .decor-chip--5,
            .decor-chip--6,
            .decor-spark--5,
            .decor-spark--6,
            .decor-spark--7,
            .decor-spark--8,
            .decor-spark--9,
            .decor-spark--10,
            .decor-spark--11,
            .decor-spark--12 { display: block !important; }
            .decor-icon { --decor-o: 0.38; font-size: clamp(1.4rem, 1.8vw, 2rem); }
            .decor-icon--1 { top: 14%; left: 2%; }
            .decor-icon--2 { top: 22%; right: 2%; }
            .decor-icon--3 { bottom: 32%; left: 3%; }
            .decor-icon--4 { bottom: 16%; right: 3%; }
            .decor-icon--5 { top: 50%; left: 1.5%; }
            .decor-icon--6 { top: 8%; right: 14%; }
            .decor-icon--7 { top: 62%; right: 2.5%; }
            .decor-icon--8 { bottom: 48%; right: 14%; }
            .decor-badge-float--gratis { top: 26%; right: 2%; }
            .decor-badge-float--gb { bottom: 34%; left: 2%; }
            .decor-beam--1 { top: 8%; left: 4%; }
            .decor-beam--2 { top: 10%; right: 5%; }
            .decor-beam--3 { bottom: 8%; left: 48%; }
            .decor-hex--1 { top: 20%; right: 3%; }
            .decor-hex--2 { bottom: 24%; left: 4%; }
            .decor-hex--3 { top: 55%; right: 12%; }
            .decor-pulse-ring--1 { top: 30%; left: 6%; }
            .decor-pulse-ring--2 { bottom: 38%; right: 7%; }
            .decor-phone--2 { top: 58%; right: 3%; }
            .decor-phone--3 { bottom: 22%; left: 2%; }
            .decor-sim--3 { top: 16%; right: 4%; }
            .decor-chip--4 { bottom: 14%; left: 5%; }
            .decor-chip--5 { top: 72%; right: 10%; }
            .hero-banner__frame--desktop::after {
                background: linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.28) 0%,
                    transparent 10%,
                    transparent 90%,
                    rgba(0, 0, 0, 0.28) 100%
                );
            }
            .hero-banner__frame--desktop {
                min-height: min(46vh, 440px);
                padding-left: clamp(32px, 6vw, 80px);
                padding-right: clamp(32px, 6vw, 80px);
            }
            .hero-banner__img-desktop {
                max-width: min(1280px, 94vw);
            }
            .hero-banner { margin-bottom: 48px; }
            .plan-cierre .porta-banner__link.banner-desktop-only {
                min-height: min(46vh, 440px);
                padding-left: clamp(32px, 6vw, 80px);
                padding-right: clamp(32px, 6vw, 80px);
            }
            .porta-banner__link.banner-desktop-only .porta-banner__img {
                max-width: min(1280px, 94vw);
                max-height: min(46vh, 440px);
            }
            .steps { gap: 22px; }
            .step-card:hover { transform: translateX(-6px); }
            .hero-download__btns {
                max-width: min(720px, 100%);
                margin: 0 auto;
            }
            .vincula-card-wrap {
                max-width: min(680px, 100%);
                margin-left: auto;
                margin-right: auto;
            }
            .plan-cierre__claims-band {
                max-width: min(900px, 100%);
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* ===== Pantallas grandes / TV ===== */
        @media (min-width: 1280px) {
            :root { --wrap-max: 1180px; }
            .wrap { padding-bottom: 80px; }
            .desktop-flank { width: clamp(120px, 14vw, 240px); }
            .decor-grid { mask-image: radial-gradient(ellipse 48% 78% at 50% 42%, transparent 34%, #000 68%); }
        }

        /* ===== Altura baja (móvil horizontal) ===== */
        @media (max-height: 520px) and (orientation: landscape) {
            .hero-banner { padding-bottom: 4px; }
            .hero-banner__img-mobile { max-height: none; }
        }

        /* ===== Accesibilidad ===== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .page-bg { animation: none !important; background-size: 100% 100% !important; }
            .decor-orb, .decor-ring, .decor-icon,
            .decor-phone, .decor-sim, .decor-chip, .decor-spark,
            .decor-beam, .decor-hex, .decor-pulse-ring, .decor-badge-float { animation: none !important; }
            .desktop-flank__badge,
            .desktop-flank__icon,
            .desktop-flank__dot { animation: none !important; }
            .whatsapp-float { animation: none !important; }
            .plan-cierre__claim-line, .plan-cierre__logo,
            .plan-cierre__claims-band::before,
            .hero-banner__glow { animation: none !important; }
            .hero-banner__tap-label i { animation: none !important; }
            .hero-banner__img-mobile,
            .hero-banner__img-desktop,
            .hero-banner__frame--desktop,
            .hero-banner__frame--mobile,
            .porta-banner__link--mobile,
            .porta-banner__link.banner-desktop-only,
            .porta-banner__link .porta-banner__img { animation: none !important; }
            .bait-stripe--pre-footer { display: none; }
            .entry-splash { display: none !important; }
            #main-app {
                opacity: 1 !important;
                transform: none !important;
                animation: none !important;
            }
            .hero-banner {
                opacity: 1 !important;
                transform: none !important;
                animation: none !important;
            }
            .hero-banner.is-revealed .hero-banner__frame--desktop { animation: none !important; }
            .hero-banner__glow { opacity: 0.6 !important; }
            .hero-banner__slide { transition: none !important; }
        }

        @media (hover: none) and (pointer: coarse) {
            .btn-check,
            .btn-step,
            .btn-porta,
            .porta-banner__btn,
            .btn-cookie {
                touch-action: manipulation;
            }
            .btn-check:active, .btn-step:active, .btn-porta:active, .porta-banner__btn:active {
                transform: scale(0.98);
            }
        }

        /* ===== Tablet landscape / iPad ===== */
        @media (min-width: 768px) and (max-width: 1023px) {
            .hero-banner { padding-bottom: 18px; }
        }

        /* ========== COOKIES ========== */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10001;
            padding: max(14px, var(--safe-bottom)) max(16px, var(--safe-right)) 14px max(16px, var(--safe-left));
            transform: translateY(110%);
            transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
            pointer-events: none;
        }
        .cookie-banner.is-visible {
            transform: translateY(0);
            pointer-events: auto;
        }
        .cookie-banner-inner {
            max-width: var(--wrap-max);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 14px 18px;
            padding: 18px 20px;
            background: var(--bait-blanco);
            color: var(--bait-negro);
            border-radius: 18px;
            border: 3px solid var(--bait-negro);
            box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.35), 6px 6px 0 var(--bait-amarillo);
        }
        .cookie-banner-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bait-amarillo);
            border-radius: 12px;
            font-size: 1.25rem;
            border: 2px solid var(--bait-negro);
        }
        .cookie-banner-text {
            flex: 1;
            min-width: 200px;
            font-size: 0.78rem;
            line-height: 1.5;
        }
        .cookie-banner-text strong {
            display: block;
            font-size: 0.85rem;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .cookie-banner-text strong i {
            margin-right: 6px;
            color: var(--bait-azul);
        }
        .cookie-banner-text a {
            color: var(--bait-azul);
            font-weight: 700;
        }
        .cookie-banner-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            width: 100%;
        }
        @media (min-width: 640px) {
            .cookie-banner-actions {
                width: auto;
                margin-left: auto;
                flex-shrink: 0;
                flex-direction: row;
            }
        }
        .btn-cookie {
            min-height: 42px;
            padding: 10px 18px;
            font-family: inherit;
            font-size: 0.72rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 999px;
            cursor: pointer;
            border: 2px solid var(--bait-negro);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-cookie--accept {
            background: var(--bait-amarillo);
            color: var(--bait-negro);
        }
        .btn-cookie--essential {
            background: var(--bait-blanco);
            color: var(--bait-negro);
        }
        .btn-cookie--prefs {
            background: transparent;
            color: var(--bait-negro);
            border-color: rgba(0, 0, 0, 0.25);
        }
        .btn-cookie:hover { transform: scale(1.02); }
        .cookie-prefs-panel {
            display: none;
            width: 100%;
            margin-top: 8px;
            padding-top: 14px;
            border-top: 1px solid rgba(0, 0, 0, 0.12);
        }
        .cookie-prefs-panel.is-open { display: block; }
        .cookie-pref-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 10px 0;
            font-size: 0.75rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }
        .cookie-pref-row:last-child { border-bottom: none; }
        .cookie-pref-row label { font-weight: 700; }
        .cookie-pref-row small {
            display: block;
            color: #555;
            font-weight: 500;
            margin-top: 2px;
        }
        .cookie-toggle {
            position: relative;
            width: 48px;
            height: 26px;
            flex-shrink: 0;
        }
        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .cookie-toggle span {
            position: absolute;
            inset: 0;
            background: #ccc;
            border-radius: 999px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .cookie-toggle span::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            left: 3px;
            top: 3px;
            background: #fff;
            border-radius: 50%;
            transition: transform 0.2s;
            box-shadow: 0 1px 4px rgba(0,0,0,0.2);
        }
        .cookie-toggle input:checked + span { background: var(--bait-azul); }
        .cookie-toggle input:checked + span::after { transform: translateX(22px); }
        .cookie-toggle input:disabled + span {
            opacity: 0.6;
            cursor: not-allowed;
        }
        body.cookie-banner-visible .wrap {
            padding-bottom: max(120px, calc(48px + var(--safe-bottom)));
        }

        /* Botón flotante WhatsApp — dudas */
        .whatsapp-float {
            position: fixed;
            z-index: 10002;
            bottom: max(20px, var(--safe-bottom));
            right: max(16px, var(--safe-right));
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.85);
            background: #25d366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.85rem;
            text-decoration: none;
            box-shadow:
                0 10px 32px rgba(37, 211, 102, 0.45),
                0 0 0 4px rgba(37, 211, 102, 0.15);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            animation: whatsapp-float-pulse 2.2s ease-in-out infinite;
        }
        .whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow:
                0 14px 40px rgba(37, 211, 102, 0.55),
                0 0 0 6px rgba(37, 211, 102, 0.2);
        }
        .whatsapp-float:active {
            transform: scale(1.02);
        }
        .whatsapp-float:focus-visible {
            outline: 3px solid var(--bait-amarillo);
            outline-offset: 3px;
        }
        @keyframes whatsapp-float-pulse {
            0%, 100% { box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45), 0 0 0 4px rgba(37, 211, 102, 0.15); }
            50% { box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.22); }
        }
        body.cookie-banner-visible .whatsapp-float {
            bottom: max(118px, calc(52px + var(--safe-bottom)));
        }

        .legal-cookies {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(0, 0, 0, 0.15);
        }
        .legal-cookies h3 {
            font-size: 0.72rem;
            margin-bottom: 6px;
        }
        .legal-cookies a {
            color: var(--bait-azul);
            font-weight: 700;
        }
        .legal-cookie-manage {
            display: inline;
            padding: 0;
            margin: 0;
            border: none;
            background: none;
            font-family: inherit;
            font-size: inherit;
            font-weight: 700;
            color: var(--bait-magenta);
            text-decoration: underline;
            cursor: pointer;
        }

        /* Easter egg — Bait Invaders (escribe «bait») */
        .bait-invader-overlay {
            position: fixed;
            inset: 0;
            z-index: 10002;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: max(16px, var(--safe-top)) max(16px, var(--safe-right)) max(16px, var(--safe-bottom)) max(16px, var(--safe-left));
            background: rgba(0, 0, 0, 0.88);
            backdrop-filter: blur(6px);
        }
        .bait-invader-overlay[hidden] { display: none; }
        .bait-invader-panel {
            position: relative;
            width: min(100%, 380px);
            padding: 14px 14px 12px;
            background: var(--bait-negro);
            border: 3px solid var(--bait-amarillo);
            border-radius: 16px;
            box-shadow: 0 0 40px rgba(255, 209, 0, 0.35), 8px 8px 0 var(--bait-magenta);
            text-align: center;
        }
        .bait-invader-title {
            font-size: 0.82rem;
            font-weight: 900;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--bait-amarillo);
            margin-bottom: 8px;
            text-shadow: 0 0 12px rgba(255, 209, 0, 0.5);
        }
        .bait-invader-close {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 36px;
            height: 36px;
            border: 2px solid var(--bait-blanco);
            border-radius: 50%;
            background: var(--bait-magenta);
            color: var(--bait-blanco);
            font-size: 1.35rem;
            line-height: 1;
            cursor: pointer;
            font-family: inherit;
        }
        .bait-invader-close:hover { transform: scale(1.05); }
        #baitInvaderCanvas {
            display: block;
            width: 100%;
            height: auto;
            max-height: min(62vh, 480px);
            border: 2px solid rgba(255, 209, 0, 0.35);
            border-radius: 8px;
            background: #000;
            image-rendering: pixelated;
            touch-action: none;
        }
        .bait-invader-hint {
            margin-top: 8px;
            font-size: 0.65rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.4;
        }
        .bait-invader-score {
            font-size: 0.72rem;
            font-weight: 800;
            color: var(--bait-azul);
            margin-bottom: 6px;
        }
