﻿
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --azul-900: #07182f;
            --azul-800: #102f5f;
            --azul-700: #184985;
            --amarillo: #f6c431;
            --verde: #1fb58f;
            --blanco: #ffffff;
            --gris-100: #f4f7fb;
            --gris-300: #dbe4ef;
            --texto: #25364a;
            --suave: #6d7d91;
            --sombra: 0 24px 70px rgba(7, 24, 47, .22);
            --header-h: 88px;
        }

        html {
            scroll-behavior: smooth;
            scrollbar-gutter: stable;
        }

        body {
            min-height: 100vh;
            font-family: "Inter", Arial, sans-serif;
            color: var(--texto);
            background: var(--gris-100);
        }

        img {
            display: block;
            max-width: 100%;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            inset: 0 0 auto;
            z-index: 30;
            height: var(--header-h);
            padding: 0 clamp(18px, 5vw, 84px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(7, 24, 47, .88);
            border-bottom: 1px solid rgba(255, 255, 255, .1);
            backdrop-filter: blur(14px);
            box-shadow: 0 14px 36px rgba(7, 24, 47, .2);
        }

        .logo {
            display: inline-grid;
            justify-items: center;
            font-weight: 800;
            color: var(--blanco);
        }

        .logo-img {
            width: 88px;
            height: 88px;
            object-fit: contain;
            flex: 0 0 auto;
            filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .22));
        }

        .nav {
            display: flex;
            align-items: center;
            gap: clamp(16px, 3vw, 34px);
        }

        .nav a,
        .dropdown-trigger {
            position: relative;
            border: 0;
            background: transparent;
            font-family: inherit;
            color: rgba(255, 255, 255, .78);
            font-size: .88rem;
            font-weight: 700;
            cursor: pointer;
            transition: color .25s ease, transform .25s ease;
        }

        .nav a::after,
        .dropdown-trigger::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -8px;
            height: 2px;
            background: var(--amarillo);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform .28s ease;
        }

        .nav a:hover,
        .dropdown:hover .dropdown-trigger {
            color: var(--blanco);
            transform: translateY(-2px);
        }

        .nav a:hover::after,
        .nav .activo::after,
        .dropdown:hover .dropdown-trigger::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav .activo {
            color: var(--amarillo);
        }

        .dropdown {
            position: relative;
            display: inline-flex;
            align-items: center;
            min-height: 48px;
        }

        .dropdown-trigger {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            min-height: 38px;
        }

        .dropdown-trigger span {
            width: 7px;
            height: 7px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(45deg) translateY(-2px);
            transition: transform .25s ease;
        }

        .dropdown:hover .dropdown-trigger span {
            transform: rotate(225deg) translateY(-2px);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 10px);
            left: 50%;
            width: 290px;
            padding: 10px;
            border: 1px solid rgba(255, 255, 255, .13);
            border-radius: 8px;
            background: rgba(7, 24, 47, .96);
            box-shadow: 0 22px 50px rgba(7, 24, 47, .32);
            backdrop-filter: blur(16px);
            opacity: 0;
            visibility: hidden;
            transform: translate(-50%, 12px);
            transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
        }

        .dropdown-menu::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: -14px;
            height: 14px;
        }

        .dropdown:hover .dropdown-menu,
        .dropdown:focus-within .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, 0);
        }

        .dropdown-menu a {
            display: grid;
            gap: 3px;
            padding: 12px 13px;
            border-radius: 6px;
            color: rgba(255, 255, 255, .9);
            transition: background .2s ease, transform .2s ease;
        }

        .dropdown-menu a::after {
            display: none;
        }

        .dropdown-menu a:hover {
            color: var(--blanco);
            background: rgba(246, 196, 49, .13);
            transform: translateX(4px);
        }

        .dropdown-menu strong {
            color: var(--amarillo);
            font-size: .85rem;
        }

        .dropdown-menu small {
            color: rgba(255, 255, 255, .58);
            font-size: .74rem;
            line-height: 1.35;
            font-weight: 600;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0 18px;
            border-radius: 6px;
            background: var(--amarillo);
            color: var(--azul-900);
            box-shadow: 0 10px 20px rgba(246, 196, 49, .22);
        }

        .nav-cta:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 16px 30px rgba(246, 196, 49, .32);
        }

        .nav-cta::after {
            display: none;
        }

        /* ===== REDES SOCIALES ===== */
        .social-links {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .18);
            background: rgba(255, 255, 255, .06);
            color: rgba(255, 255, 255, .82);
            transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
        }

        .social-link:hover {
            transform: translateY(-2px);
            background: rgba(246, 196, 49, .16);
            border-color: rgba(246, 196, 49, .45);
            color: var(--amarillo);
        }

        .social-link svg {
            width: 17px;
            height: 17px;
            fill: currentColor;
        }

        .header-social {
            margin-right: 4px;
        }

        .footer-social {
            margin-top: 18px;
        }

        /* ===== MENÃš HAMBURGUESA ===== */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            padding: 0;
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 8px;
            background: rgba(255, 255, 255, .06);
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            margin: 0 auto;
            background: var(--blanco);
            border-radius: 2px;
            transition: transform .25s ease, opacity .25s ease;
        }

        .header.is-open .menu-toggle span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .header.is-open .menu-toggle span:nth-child(2) {
            opacity: 0;
        }

        .header.is-open .menu-toggle span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav-backdrop {
            display: none;
        }

        /* ===== HERO ===== */
        .page-hero {
            position: relative;
            min-height: clamp(520px, 82vh, 720px);
            padding: calc(var(--header-h) + 50px) clamp(18px, 5vw, 84px) 72px;
            overflow: hidden;
            background: var(--azul-900);
        }

        .page-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(246, 196, 49, .07) 1px, transparent 1px),
                linear-gradient(90deg, rgba(246, 196, 49, .07) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
            animation: gridDrift 20s linear infinite;
            pointer-events: none;
        }

        .page-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg, rgba(7, 24, 47, .94) 0%, rgba(16, 47, 95, .82) 55%, rgba(16, 47, 95, .35) 100%);
            pointer-events: none;
        }

        .page-hero-inner {
            position: relative;
            z-index: 2;
            width: min(1280px, 100%);
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr);
            gap: clamp(32px, 5vw, 64px);
            align-items: center;
        }

        .etiqueta {
            width: fit-content;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 22px;
            padding: 8px 13px;
            border: 1px solid rgba(246, 196, 49, .38);
            border-radius: 999px;
            color: var(--amarillo);
            background: rgba(246, 196, 49, .12);
            font-size: .75rem;
            font-weight: 800;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .etiqueta::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--amarillo);
            box-shadow: 0 0 0 7px rgba(246, 196, 49, .16);
            animation: pulso 1.8s ease-in-out infinite;
        }

        .page-hero h1 {
            max-width: 700px;
            color: var(--blanco);
            font-family: "Barlow Condensed", sans-serif;
            font-size: clamp(2.4rem, 5vw, 4.3rem);
            line-height: 1;
            font-weight: 800;
            text-wrap: balance;
        }

        .page-hero h1 span {
            color: var(--amarillo);
        }

        .hero-text {
            max-width: 580px;
            margin-top: 22px;
            color: rgba(255, 255, 255, .76);
            font-size: clamp(.82rem, 1.2vw, .94rem);
            line-height: 1.72;
        }

        .hero-actions {
            margin-top: 28px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .boton {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            min-height: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 24px;
            border-radius: 6px;
            font-size: .94rem;
            font-weight: 800;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
        }

        .boton::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            transform: translateX(-105%);
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
            transition: transform .58s ease;
        }

        .boton:hover::before {
            transform: translateX(105%);
        }

        .boton:hover {
            transform: translateY(-4px);
        }

        .boton-principal {
            background: var(--amarillo);
            color: var(--azul-900);
            box-shadow: 0 18px 34px rgba(246, 196, 49, .25);
        }

        .boton-secundario {
            border: 1px solid rgba(255, 255, 255, .34);
            color: var(--blanco);
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(10px);
        }

        .boton-secundario:hover {
            border-color: var(--amarillo);
            color: var(--amarillo);
        }

        /* Hero panel: contenedor sin overflow para no recortar la tarjeta */
        .hero-panel {
            position: relative;
            animation: flotar 5.5s ease-in-out infinite;
        }

        .hero-panel-frame {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, .16);
            box-shadow: 0 16px 40px rgba(7, 24, 47, .28);
        }

        .hero-panel-frame img {
            width: 100%;
            aspect-ratio: 4 / 4.2;
            object-fit: cover;
        }

        .hero-panel-frame::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(7, 24, 47, .55));
            pointer-events: none;
        }

        .hero-panel-badge {
            position: absolute;
            left: -18px;
            bottom: 28px;
            z-index: 2;
            width: min(240px, calc(100% - 36px));
            padding: 16px 18px;
            border-radius: 8px;
            background: var(--blanco);
            box-shadow: 0 18px 42px rgba(7, 24, 47, .24);
            transition: transform .28s ease;
        }

        .hero-panel:hover .hero-panel-badge {
            transform: translateY(-6px);
        }

        .hero-panel-badge strong {
            display: block;
            color: var(--azul-900);
            font-family: "Barlow Condensed", sans-serif;
            font-size: 1.7rem;
            line-height: 1;
        }

        .hero-panel-badge span {
            display: block;
            margin-top: 6px;
            color: var(--suave);
            font-size: .78rem;
            line-height: 1.45;
            font-weight: 600;
        }

        .scroll {
            position: absolute;
            left: 50%;
            bottom: 22px;
            z-index: 4;
            width: 28px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, .42);
            border-radius: 999px;
            transform: translateX(-50%);
        }

        .scroll::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 8px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--amarillo);
            transform: translateX(-50%);
            animation: bajar 1.5s ease infinite;
        }

        /* ===== STATS + RESUMEN ===== */
        .stats-bar {
            position: relative;
            z-index: 3;
            width: min(1280px, calc(100% - 36px));
            margin: -46px auto 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 18px 48px rgba(7, 24, 47, .14);
            background: var(--gris-300);
        }

        .stats-bar div {
            min-height: 130px;
            padding: 24px;
            background: var(--blanco);
            transition: transform .25s ease, background .25s ease;
        }

        .stats-bar div:hover {
            transform: translateY(-6px);
            background: #fffaf0;
        }

        .stats-bar strong {
            display: block;
            color: var(--azul-900);
            font-family: "Barlow Condensed", sans-serif;
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            line-height: 1;
        }

        .stats-bar strong em {
            color: var(--amarillo);
            font-style: normal;
        }

        .stats-bar span {
            display: block;
            margin-top: 8px;
            color: var(--suave);
            font-size: .84rem;
            line-height: 1.5;
            font-weight: 600;
        }

        .resumen {
            position: relative;
            z-index: 3;
            width: min(1280px, calc(100% - 36px));
            margin: 24px auto 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 18px 48px rgba(7, 24, 47, .14);
            background: var(--gris-300);
        }

        .resumen a {
            min-height: 148px;
            padding: 24px;
            background: var(--blanco);
            transition: transform .25s ease, background .25s ease;
        }

        .resumen a:hover {
            transform: translateY(-6px);
            background: #fffaf0;
        }

        .resumen small {
            color: var(--amarillo);
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .resumen strong {
            display: block;
            margin-top: 8px;
            color: var(--azul-900);
            font-family: "Barlow Condensed", sans-serif;
            font-size: 1.5rem;
            line-height: 1;
        }

        .resumen p {
            margin-top: 10px;
            color: var(--suave);
            font-size: .86rem;
            line-height: 1.55;
        }

        /* ===== SECCIONES ===== */
        .container {
            width: min(1280px, calc(100% - 36px));
            margin-inline: auto;
        }

        .section-label {
            display: inline-block;
            margin-bottom: 10px;
            color: var(--amarillo);
            font-size: .75rem;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .section-head {
            display: grid;
            grid-template-columns: minmax(0, .85fr) minmax(280px, .55fr);
            gap: 32px;
            align-items: end;
            margin-bottom: 30px;
        }

        .section-head h2 {
            color: var(--azul-900);
            font-family: "Barlow Condensed", sans-serif;
            font-size: clamp(2.2rem, 4vw, 3.1rem);
            line-height: 1;
            font-weight: 800;
        }

        .section-head p {
            color: var(--suave);
            font-size: .96rem;
            line-height: 1.7;
        }

        .about-block {
            padding: 72px 0;
        }

        .about-block--dark {
            background: var(--azul-900);
            color: var(--blanco);
        }

        .about-block--dark .section-head h2 {
            color: var(--blanco);
        }

        .about-block--dark .section-head p {
            color: rgba(255, 255, 255, .72);
        }

        .block-hero {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
            gap: clamp(28px, 4vw, 48px);
            align-items: center;
        }

        .block-num {
            font-family: "Barlow Condensed", sans-serif;
            font-size: clamp(4rem, 8vw, 6rem);
            line-height: .85;
            font-weight: 800;
            color: transparent;
            -webkit-text-stroke: 1px rgba(246, 196, 49, .22);
            pointer-events: none;
        }

        .block-copy h2 {
            color: var(--azul-900);
            font-family: "Barlow Condensed", sans-serif;
            font-size: clamp(2rem, 3.8vw, 3.2rem);
            line-height: .98;
            font-weight: 800;
        }

        .about-block--dark .block-copy h2 {
            color: var(--blanco);
        }

        .block-copy h2 span {
            color: var(--amarillo);
        }

        .block-intro {
            margin-top: 18px;
            max-width: 620px;
            color: var(--suave);
            font-size: .94rem;
            line-height: 1.72;
        }

        .about-block--dark .block-intro {
            color: rgba(255, 255, 255, .72);
        }

        .block-visual {
            position: relative;
            animation: flotar 5.5s ease-in-out infinite;
        }

        .block-frame {
            position: relative;
            aspect-ratio: 4 / 4.2;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--gris-300);
            box-shadow: var(--sombra);
        }

        .about-block--dark .block-frame {
            border-color: rgba(255, 255, 255, .16);
        }

        .block-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .7s ease;
        }

        .block-visual:hover .block-frame img {
            transform: scale(1.08);
        }

        .block-frame::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(7, 24, 47, .55));
            pointer-events: none;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            margin-top: 8px;
        }

        .mv-card {
            padding: 28px;
            border-radius: 8px;
            background: var(--blanco);
            border: 1px solid var(--gris-300);
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .mv-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 42px rgba(7, 24, 47, .1);
        }

        .mv-card h3 {
            color: var(--azul-900);
            font-family: "Barlow Condensed", sans-serif;
            font-size: 1.8rem;
            line-height: 1;
        }

        .mv-card p {
            margin-top: 12px;
            color: var(--suave);
            font-size: .92rem;
            line-height: 1.7;
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        .benefit {
            display: grid;
            grid-template-columns: 44px 1fr;
            gap: 14px;
            padding: 16px;
            border-radius: 8px;
            background: var(--blanco);
            border: 1px solid var(--gris-300);
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .benefit:hover {
            transform: translateX(6px);
            box-shadow: 0 14px 34px rgba(7, 24, 47, .08);
        }

        .benefit-icon {
            width: 44px;
            height: 44px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: rgba(246, 196, 49, .16);
            color: var(--azul-900);
            font-weight: 800;
            font-size: .82rem;
        }

        .benefit h3 {
            color: var(--azul-900);
            font-size: .92rem;
        }

        .benefit p {
            margin-top: 4px;
            color: var(--suave);
            font-size: .84rem;
            line-height: 1.55;
        }

        .trust {
            padding: 64px 0;
            background: var(--blanco);
            border-block: 1px solid var(--gris-300);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .trust-card {
            padding: 24px;
            border-radius: 8px;
            background: var(--gris-100);
            border: 1px solid var(--gris-300);
            transition: transform .25s ease, background .25s ease;
        }

        .trust-card:hover {
            transform: translateY(-6px);
            background: #fffaf0;
        }

        .trust-card strong {
            display: block;
            color: var(--azul-900);
            font-family: "Barlow Condensed", sans-serif;
            font-size: 1.5rem;
            line-height: 1;
        }

        .trust-card p {
            margin-top: 10px;
            color: var(--suave);
            font-size: .88rem;
            line-height: 1.6;
        }

        .cta {
            width: min(1280px, calc(100% - 36px));
            margin: 72px auto 86px;
            padding: 42px clamp(22px, 5vw, 48px);
            border-radius: 8px;
            background:
                linear-gradient(115deg, rgba(7, 24, 47, .97), rgba(16, 47, 95, .92)),
                url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center / cover;
            box-shadow: var(--sombra);
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 24px;
            align-items: center;
        }

        .cta h2 {
            color: var(--blanco);
            font-family: "Barlow Condensed", sans-serif;
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            line-height: 1;
            font-weight: 800;
        }

        .cta p {
            margin-top: 10px;
            color: rgba(255, 255, 255, .74);
            font-size: .92rem;
            line-height: 1.65;
        }

        .footer {
            background: var(--azul-900);
            color: rgba(255, 255, 255, .68);
            padding: 58px clamp(18px, 5vw, 72px) 26px;
        }

        .footer-inner {
            width: min(1280px, 100%);
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(180px, .65fr));
            gap: 32px;
        }

        .footer-brand {
            max-width: 360px;
        }

        .footer-brand .logo {
            margin-bottom: 16px;
        }

        .footer-brand .logo-img {
            width: 86px;
            height: 86px;
        }

        .footer-brand p {
            font-size: .92rem;
            line-height: 1.7;
        }

        .footer h3 {
            margin-bottom: 14px;
            color: var(--blanco);
            font-family: "Barlow Condensed", sans-serif;
            font-size: 1.25rem;
            letter-spacing: .02em;
        }

        .footer-list {
            display: grid;
            gap: 10px;
            list-style: none;
        }

        .footer-list a:hover {
            color: var(--amarillo);
        }

        .footer-bottom {
            width: min(1280px, 100%);
            margin: 34px auto 0;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, .12);
            display: flex;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            font-size: .84rem;
            font-weight: 600;
        }

        @keyframes gridDrift {
            to {
                transform: translate(48px, 48px);
            }
        }

        @keyframes pulso {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(.82);
                opacity: .72;
            }
        }

        @keyframes flotar {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes bajar {
            0% {
                transform: translate(-50%, 0);
                opacity: 1;
            }

            100% {
                transform: translate(-50%, 16px);
                opacity: 0;
            }
        }

        @media (min-width: 1800px) {
            :root {
                --header-h: 88px;
            }

            .header {
                padding-inline: clamp(96px, 7vw, 180px);
            }

            .page-hero {
                padding-inline: clamp(96px, 7vw, 180px);
            }
        }

        @media (max-width: 1180px) {

            .page-hero-inner,
            .block-hero {
                grid-template-columns: 1fr;
            }

            .stats-bar,
            .resumen {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits,
            .trust-grid {
                grid-template-columns: 1fr;
            }

            .footer-inner {
                grid-template-columns: 1.2fr 1fr 1fr;
            }

            .footer-inner>div:last-child {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 900px) {
            .header {
                height: auto;
                min-height: 76px;
                flex-wrap: wrap;
                gap: 12px;
                padding-block: 12px;
            }

            .header {
                flex-wrap: nowrap;
                align-items: center;
            }

            .menu-toggle {
                display: inline-flex;
                margin-left: auto;
            }

            .nav-backdrop {
                display: block;
                position: fixed;
                inset: 0;
                z-index: 25;
                background: rgba(7, 24, 47, .55);
                opacity: 0;
                visibility: hidden;
                transition: opacity .25s ease, visibility .25s ease;
            }

            .header.is-open .nav-backdrop {
                opacity: 1;
                visibility: visible;
            }

            .nav {
                position: fixed;
                top: 0;
                right: 0;
                z-index: 40;
                width: min(320px, 88vw);
                height: 100vh;
                padding: calc(var(--header-h) + 24px) 22px 28px;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 6px;
                overflow-y: auto;
                background: rgba(7, 24, 47, .98);
                border-left: 1px solid rgba(255, 255, 255, .1);
                box-shadow: -20px 0 50px rgba(0, 0, 0, .28);
                transform: translateX(100%);
                transition: transform .28s ease;
            }

            .header.is-open .nav {
                transform: translateX(0);
            }

            .nav>a,
            .dropdown,
            .nav-cta {
                width: 100%;
            }

            .nav>a,
            .dropdown-trigger {
                display: flex;
                align-items: center;
                min-height: 48px;
                padding: 0 12px;
                font-size: .95rem;
            }

            .header-social {
                display: flex;
                justify-content: center;
                width: 100%;
                margin-top: 18px;
                padding-top: 18px;
                border-top: 1px solid rgba(255, 255, 255, .12);
            }

            .nav-cta {
                margin-top: 10px;
                width: 100%;
            }

            .dropdown {
                position: static;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                width: 100%;
            }

            .dropdown-trigger {
                width: 100%;
                justify-content: space-between;
                font-size: .95rem;
            }

            .dropdown-menu {
                position: static;
                left: auto;
                right: auto;
                top: auto;
                width: 100%;
                margin: 0;
                padding: 0;
                border: 0;
                box-shadow: none;
                background: transparent;
                backdrop-filter: none;
                opacity: 1;
                visibility: visible;
                transform: none !important;
                pointer-events: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height .28s ease, margin-top .28s ease, padding .28s ease;
            }

            .dropdown-menu::before {
                display: none;
            }

            .dropdown.is-open .dropdown-menu {
                pointer-events: auto;
                max-height: 520px;
                margin-top: 6px;
                padding: 8px;
                background: rgba(255, 255, 255, .05);
                border-radius: 8px;
            }

            .dropdown-menu a {
                padding: 12px;
            }

            .dropdown-menu a {
                padding: 12px;
            }

            .logo-img {
                width: 58px;
                height: 58px;
            }

            .page-hero {
                padding-top: 162px;
                min-height: auto;
                padding-bottom: 84px;
            }
        }

        @media (max-width: 860px) {

            .stats-bar,
            .resumen,
            .mv-grid,
            .section-head,
            .cta,
            .footer-inner {
                grid-template-columns: 1fr;
            }

            .stats-bar {
                margin-top: 0;
            }

            .hero-panel-badge {
                left: 18px;
                width: min(280px, calc(100% - 36px));
            }
        }

        @media (max-width: 560px) {
            .boton {
                width: 100%;
            }

            .footer-bottom {
                display: grid;
            }
        }
    