        /* =========================================================
           RESET
        ========================================================== */

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: "Inter", sans-serif;

            background: #071525;
            color: #ffffff;

            line-height: 1.6;

            overflow-x: hidden;
        }

        body.menu-open {
            overflow: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
        }

        button {
            font-family: inherit;
        }


        /* =========================================================
           CONTAINER
        ========================================================== */

        .container {
            width: min(
                1120px,
                calc(100% - 40px)
            );

            margin: 0 auto;
        }


        /* =========================================================
           HEADER
        ========================================================== */

        .header {
            position: fixed !important;

            top: 0;
            left: 0;
            right: 0;

            width: 100%;
            height: 76px;

            z-index: 9999;

            background: rgba(5, 16, 32, 0.92);

            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);

            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        main {
            padding-top: 76px;
        }

        .header-inner {
            min-height: 76px;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            text-decoration: none;

            font-size: 21px;
            font-weight: 800;

            letter-spacing: -0.7px;

            white-space: nowrap;
        }

        .logo span {
            color: #6bc2f7;
        }


        /* =========================================================
           DESKTOP NAV
        ========================================================== */

        .nav {
            display: flex;
            align-items: center;

            gap: 30px;
        }

        .nav a {
            text-decoration: none;

            color:
                rgba(255,255,255,0.70);

            font-size: 14px;
            font-weight: 500;

            transition:
                color 0.25s ease;
        }

        .nav a:hover {
            color: #ffffff;
        }

        .nav-button {
            padding: 10px 21px;

            background: #ffffff;

            color: #071525 !important;

            border-radius: 50px;

            font-weight: 700 !important;

            transition:
                all 0.25s ease;
        }

        .nav-button:hover {
            background: #8ad0ff;

            transform:
                translateY(-2px);
        }


        /* =========================================================
           HAMBURGER
        ========================================================== */

        .hamburger {
            display: none;

            width: 44px;
            height: 44px;

            border:
                1px solid
                rgba(255,255,255,0.08);

            border-radius: 12px;

            background:
                rgba(255,255,255,0.05);

            cursor: pointer;

            align-items: center;
            justify-content: center;

            flex-direction: column;

            gap: 5px;

            position: relative;

            z-index: 1100;
        }

        .hamburger span {
            display: block;

            width: 21px;
            height: 2px;

            background: #ffffff;

            border-radius: 5px;

            transition:
                all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform:
                translateY(7px)
                rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform:
                translateY(-7px)
                rotate(-45deg);
        }


        /* =========================================================
           MOBILE MENU
        ========================================================== */

        .mobile-menu {
            position: fixed;

            top: 0;
            right: 0;

            width: min(
                340px,
                86vw
            );

            height: 100vh;

            padding:
                110px
                30px
                40px;

            background:
                rgba(5,16,32,0.98);

            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);

            border-left:
                1px solid
                rgba(255,255,255,0.07);

            display: flex;

            flex-direction: column;

            align-items: center;

            gap: 8px;

            transform:
                translateX(100%);

            visibility: hidden;

            pointer-events: none;

            opacity: 0;

            transition:
                transform 0.35s ease,
                opacity 0.25s ease,
                visibility 0.35s;

            z-index: 1050;
        }

        .mobile-menu.open {
            transform:
                translateX(0);

            visibility: visible;

            pointer-events: auto;

            opacity: 1;
        }

        .mobile-menu a {
            width: 100%;

            padding: 15px;

            text-align: center;

            text-decoration: none;

            color:
                rgba(255,255,255,0.78);

            font-size: 16px;
            font-weight: 600;

            border-radius: 12px;

            transition:
                all 0.25s ease;
        }

        .mobile-menu a:hover {
            background:
                rgba(107,194,247,0.08);

            color: #ffffff;
        }

        .mobile-menu .mobile-button {
            margin-top: 18px;

            background: #ffffff;

            color: #071525;
        }

        .mobile-menu .mobile-button:hover {
            background: #8ad0ff;

            color: #071525;
        }


        /* =========================================================
           OVERLAY
        ========================================================== */

        .menu-overlay {
            position: fixed;

            inset: 0;

            background:
                rgba(0,0,0,0.58);

            opacity: 0;

            visibility: hidden;

            pointer-events: none;

            transition:
                opacity 0.3s ease;

            z-index: 1040;
        }

        .menu-overlay.active {
            opacity: 1;

            visibility: visible;

            pointer-events: auto;
        }


        /* =========================================================
           PREGUNTAS FRECUENTES
        ========================================================== */

        .faq-section {
            padding: 80px 0 100px;

            background:
                radial-gradient(
                    circle at 75% 35%,
                    rgba(107,194,247,0.06),
                    transparent 34%
                ),
                linear-gradient(
                    135deg,
                    #031020 0%,
                    #08233b 48%,
                    #0d3a5a 100%
                );

            min-height: calc(100vh - 76px - 200px);
        }

        .faq-header {
            text-align: center;

            margin-bottom: 50px;
        }

        .faq-header h1 {
            font-size:
                clamp(
                    34px,
                    4.5vw,
                    52px
                );

            font-weight: 800;

            letter-spacing: -1.5px;

            margin-bottom: 12px;
        }

        .faq-header h1 span {
            color: #8ad0ff;
        }

        .faq-content {
            max-width: 850px;

            margin: 0 auto;
        }

        /* Estilos para cada item de FAQ */
        .faq-item {
            border-bottom: 1px solid rgba(255,255,255,0.06);

            margin-bottom: 8px;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            width: 100%;

            padding: 20px 0;

            background: none;

            border: none;

            display: flex;

            justify-content: space-between;

            align-items: center;

            cursor: pointer;

            font-size: 17px;

            font-weight: 600;

            color: #ffffff;

            text-align: left;

            font-family: inherit;

            transition: color 0.2s ease;

            gap: 20px;
        }

        .faq-question:hover {
            color: #8ad0ff;
        }

        .faq-question .arrow {
            font-size: 14px;

            color: rgba(255,255,255,0.40);

            transition: transform 0.3s ease;

            flex-shrink: 0;
        }

        .faq-question.open .arrow {
            transform: rotate(180deg);

            color: #8ad0ff;
        }

        .faq-answer {
            max-height: 0;

            overflow: hidden;

            transition: max-height 0.4s ease, padding 0.3s ease;

            padding: 0;

            color: rgba(255,255,255,0.70);

            font-size: 15px;

            line-height: 1.8;

            text-align: justify;
        }

        .faq-answer.open {
            max-height: 2000px;

            padding: 0 0 20px;
        }

        .faq-answer p {
            margin-bottom: 12px;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-answer ul {
            list-style: none;

            padding-left: 0;

            margin: 10px 0 14px;
        }

        .faq-answer ul li {
            padding: 3px 0 3px 24px;

            position: relative;

            color: rgba(255,255,255,0.70);
        }

        .faq-answer ul li::before {
            content: "•";

            color: #6bc2f7;

            position: absolute;

            left: 0;

            font-size: 16px;
        }

        .faq-answer .highlight-box {
            background: rgba(10,25,45,0.50);

            border-left: 4px solid #6bc2f7;

            padding: 14px 18px;

            border-radius: 8px;

            margin: 12px 0;
        }

        .faq-answer .highlight-box p {
            margin-bottom: 0;

            color: rgba(255,255,255,0.80);
        }

        .faq-answer a {
            color: #8ad0ff;

            text-decoration: none;

            transition: color 0.2s;
        }

        .faq-answer a:hover {
            color: #6bc2f7;

            text-decoration: underline;
        }

        /* Sección "¿Todavía tienes dudas?" */
        .faq-closing {
            background: rgba(10,25,45,0.50);

            border: 1px solid rgba(255,255,255,0.06);

            border-radius: 16px;

            padding: 35px 30px;

            margin-top: 40px;

            text-align: center;
        }

        .faq-closing h3 {
            font-size: 22px;

            font-weight: 700;

            color: #ffffff;

            margin-bottom: 10px;
        }

        .faq-closing p {
            color: rgba(255,255,255,0.65);

            font-size: 16px;

            line-height: 1.7;

            margin-bottom: 20px;

            text-align: center;
        }

        .faq-closing .btn-whatsapp-closing {
            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 10px;

            background: #25D366;

            color: #ffffff;

            padding: 14px 40px;

            border-radius: 50px;

            font-size: 16px;

            font-weight: 700;

            text-decoration: none;

            transition: all 0.3s ease;

            min-width: 220px;
        }

        .faq-closing .btn-whatsapp-closing:hover {
            background: #1da851;

            transform: translateY(-3px);

            box-shadow: 0 8px 30px rgba(37,211,102,0.3);
        }


        /* =========================================================
           FOOTER — ESTILO MEJORADO (igual que index.html)
        ========================================================== */

        .footer {
            padding: 50px 0 25px;

            background: #04101d;

            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .footer-top {
            display: grid;

            grid-template-columns: 1fr 2fr 1fr;

            gap: 40px;

            margin-bottom: 35px;

            align-items: start;
        }

        /* Logo y descripción */
        .footer-brand {
            display: flex;

            flex-direction: column;

            gap: 8px;
        }

        .footer-logo {
            font-size: 20px;

            font-weight: 800;
        }

        .footer-logo span {
            color: #6bc2f7;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.40);

            font-size: 13px;

            line-height: 1.6;

            max-width: 280px;
        }

        /* Enlaces del footer */
        .footer-links {
            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 30px;
        }

        .footer-links .link-group {
            display: flex;

            flex-direction: column;

            gap: 6px;

            text-align: center;
        }

        .footer-links .link-group .group-title {
            color: #ffffff;

            font-size: 13px;

            font-weight: 700;

            text-transform: uppercase;

            letter-spacing: 0.8px;

            margin-bottom: 6px;

            text-align: center;
        }

        .footer-links .link-group a {
            color: rgba(255,255,255,0.45);

            font-size: 13px;

            text-decoration: none;

            transition: color 0.2s ease;

            line-height: 1.8;
        }

        .footer-links .link-group a:hover {
            color: #6bc2f7;
        }

        /* Redes sociales */
        .footer-social {
            display: flex;

            flex-direction: column;

            align-items: flex-end;

            gap: 12px;
        }

        .footer-social .social-label {
            color: rgba(255,255,255,0.35);

            font-size: 12px;

            font-weight: 500;

            text-transform: uppercase;

            letter-spacing: 0.8px;
        }

        .social-links {
            display: flex;

            align-items: center;

            gap: 10px;
        }

        .social-links a {
            width: 42px;
            height: 42px;

            display: flex;

            align-items: center;
            justify-content: center;

            border-radius: 12px;

            background: rgba(255,255,255,0.05);

            border: 1px solid rgba(255,255,255,0.07);

            transition: all 0.25s ease;
        }

        .social-links svg {
            width: 20px;
            height: 20px;

            fill: currentColor;

            color: rgba(255,255,255,0.50);
        }

        .social-links svg rect,
        .social-links svg circle:not(.instagram-dot) {
            fill: none;

            stroke: currentColor;

            stroke-width: 1.8;
        }

        .social-links svg .instagram-dot {
            fill: currentColor;
        }

        .social-links a:hover {
            background: rgba(107,194,247,0.12);

            border-color: rgba(107,194,247,0.30);

            transform: translateY(-3px);
        }

        .social-links a:hover svg {
            color: #6bc2f7;
        }

        /* Footer bottom */
        .footer-bottom {
            padding-top: 20px;

            border-top: 1px solid rgba(255,255,255,0.05);

            color: rgba(255,255,255,0.25);

            font-size: 12px;

            text-align: center;
        }


        /* =========================================================
           TABLET
        ========================================================== */

        @media (max-width: 900px) {

            .nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            /* Footer tablet */
            .footer-top {
                grid-template-columns: 1fr;

                gap: 30px;

                text-align: center;
            }

            .footer-brand {
                align-items: center;
            }

            .footer-brand p {
                max-width: 400px;

                margin: 0 auto;
            }

            .footer-links {
                grid-template-columns: repeat(3, 1fr);

                gap: 20px;

                justify-items: center;
            }

            .footer-links .link-group {
                align-items: center;
            }

            .footer-social {
                align-items: center;
            }

            .faq-closing {
                padding: 28px 20px;
            }

            .faq-closing h3 {
                font-size: 20px;
            }

            .faq-closing .btn-whatsapp-closing {
                padding: 12px 30px;

                font-size: 15px;

                min-width: 180px;
            }
        }


        /* =========================================================
           MOBILE
        ========================================================== */

        @media (max-width: 650px) {

            .header {
                height: 68px;
            }

            main {
                padding-top: 68px;
            }

            .container {
                width:
                    calc(100% - 28px);
            }

            .header-inner {
                min-height: 68px;
            }

            .logo {
                font-size: 18px;
            }

            .faq-section {
                padding: 50px 0 70px;
            }

            .faq-header {
                margin-bottom: 35px;
            }

            .faq-question {
                font-size: 15px;

                padding: 16px 0;
            }

            .faq-answer {
                font-size: 14px;
            }

            .faq-answer ul li {
                font-size: 14px;
            }

            .faq-closing {
                padding: 24px 16px;
                margin-top: 30px;
            }

            .faq-closing h3 {
                font-size: 18px;
            }

            .faq-closing p {
                font-size: 14px;
            }

            .faq-closing .btn-whatsapp-closing {
                padding: 12px 24px;

                font-size: 14px;

                min-width: 160px;

                width: 100%;
            }

            /* Footer mobile */
            .footer {
                padding: 40px 0 20px;
            }

            .footer-top {
                gap: 25px;

                margin-bottom: 25px;
            }

            .footer-logo {
                font-size: 18px;
            }

            .footer-brand p {
                font-size: 12px;

                max-width: 100%;
            }

            .footer-links {
                grid-template-columns: 1fr;

                gap: 16px;

                width: 100%;
            }

            .footer-links .link-group {
                align-items: center;

                padding: 12px 0;

                border-bottom: 1px solid rgba(255,255,255,0.04);
            }

            .footer-links .link-group:last-child {
                border-bottom: none;
            }

            .footer-links .link-group .group-title {
                font-size: 12px;

                margin-bottom: 4px;
            }

            .footer-links .link-group a {
                font-size: 12px;
            }

            .social-links a {
                width: 38px;
                height: 38px;
            }

            .social-links svg {
                width: 18px;
                height: 18px;
            }

            .footer-bottom {
                font-size: 11px;

                padding-top: 16px;
            }
        }


        /* =========================================================
           TELEFONOS PEQUEÑOS
        ========================================================== */

        @media (max-width: 400px) {

            .faq-section {
                padding: 40px 0 60px;
            }

            .faq-header h1 {
                font-size: 28px;
            }

            .faq-question {
                font-size: 14px;

                padding: 14px 0;
            }

            .faq-answer {
                font-size: 13px;
            }

            .faq-answer ul li {
                font-size: 13px;
            }

            .faq-closing {
                padding: 20px 14px;
            }

            .faq-closing h3 {
                font-size: 17px;
            }

            .faq-closing p {
                font-size: 13px;
            }

            .faq-closing .btn-whatsapp-closing {
                font-size: 13px;

                padding: 10px 20px;
            }

            .footer {
                padding: 30px 0 16px;
            }

            .footer-links .link-group {
                padding: 10px 0;
            }

            .footer-links .link-group a {
                font-size: 11px;
            }

            .social-links {
                gap: 8px;
            }

            .social-links a {
                width: 34px;
                height: 34px;
            }

            .social-links svg {
                width: 16px;
                height: 16px;
            }
        }