        /* =========================================================
           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;
        }


        /* =========================================================
           POLÍTICA DE SERVICIO
        ========================================================== */

        .policy-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);
        }

        .policy-header {
            text-align: center;

            margin-bottom: 50px;
        }

        .policy-header h1 {
            font-size:
                clamp(
                    34px,
                    4.5vw,
                    52px
                );

            font-weight: 800;

            letter-spacing: -1.5px;

            margin-bottom: 12px;
        }

        .policy-header h1 span {
            color: #8ad0ff;
        }

        .policy-header .last-update {
            color:
                rgba(255,255,255,0.45);

            font-size: 14px;
        }

        .policy-content {
            max-width: 850px;

            margin: 0 auto;
        }

        .policy-content .policy-block {
            margin-bottom: 40px;

            padding-bottom: 40px;

            border-bottom:
                1px solid
                rgba(255,255,255,0.06);
        }

        .policy-content .policy-block:last-child {
            border-bottom: none;

            margin-bottom: 0;

            padding-bottom: 0;
        }

        .policy-content h2 {
            font-size: 22px;

            font-weight: 700;

            color: #6bc2f7;

            margin-bottom: 14px;

            letter-spacing: -0.5px;
        }

        .policy-content p {
            color:
                rgba(255,255,255,0.70);

            font-size: 15px;

            line-height: 1.8;

            margin-bottom: 12px;
            text-align: justify;
        }

        .policy-content p:last-child {
            margin-bottom: 0;
        }

        .policy-content strong {
            color: #ffffff;
        }

        .policy-content ul {
            list-style: none;

            padding-left: 0;

            margin: 12px 0;
        }

        .policy-content ul li {
            color:
                rgba(255,255,255,0.70);

            font-size: 15px;

            line-height: 1.8;

            padding: 4px 0 4px 24px;

            position: relative;
            text-align: justify;
        }

        .policy-content ul li::before {
            content: "•";

            color: #6bc2f7;

            position: absolute;

            left: 0;

            font-size: 18px;
        }

        /* Tabla de precios */
        .price-table-wrapper {
            overflow-x: auto;

            margin: 16px 0 20px;

            border-radius: 12px;

            border: 1px solid rgba(255,255,255,0.06);

            background: rgba(10,25,45,0.40);
        }

        .price-table {
            width: 100%;

            border-collapse: collapse;
            text-align: center;
            font-size: 14px;
        }

        .price-table thead {
            background: rgba(107,194,247,0.10);
        }

        .price-table th {
            padding: 14px 16px;

            text-align: center;

            color: #6bc2f7;

            font-weight: 700;

            font-size: 13px;

            text-transform: uppercase;

            letter-spacing: 0.5px;

            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .price-table td {
            padding: 12px 16px;

            color: rgba(255,255,255,0.75);

            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .price-table tbody tr:last-child td {
            border-bottom: none;
        }

        .price-table tbody tr:hover {
            background: rgba(107,194,247,0.04);
        }

        .price-table tbody tr.featured-row {
            background: rgba(107,194,247,0.06);
        }

        .price-table tbody tr.featured-row td {
            color: #ffffff;
        }

        .price-table .highlight-text {
            color: #8ad0ff;

            font-weight: 700;
        }

        /* Tabla de tipos de cambio */
        .change-table-wrapper {
            overflow-x: auto;

            margin: 16px 0 20px;

            border-radius: 12px;

            border: 1px solid rgba(255,255,255,0.06);

            background: rgba(10,25,45,0.40);
        }

        .change-table {
            width: 100%;
            text-align: center;
            border-collapse: collapse;

            font-size: 14px;
        }

        .change-table thead {
            background: rgba(107,194,247,0.10);
        }

        .change-table th {
            padding: 12px 16px;

            text-align: center;

            color: #6bc2f7;

            font-weight: 700;

            font-size: 13px;

            text-transform: uppercase;

            letter-spacing: 0.5px;

            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .change-table td {
            padding: 10px 16px;

            color: rgba(255,255,255,0.75);

            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .change-table tbody tr:last-child td {
            border-bottom: none;
        }

        .change-table tbody tr:hover {
            background: rgba(107,194,247,0.04);
        }

        .change-table .yes {
            color: #51cf66;
        }

        .change-table .no {
            color: #ff6b6b;
        }


        /* =========================================================
           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;
            }
        }


        /* =========================================================
           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;
            }

            .policy-section {
                padding: 50px 0 70px;
            }

            .policy-header {
                margin-bottom: 35px;
            }

            .policy-content .policy-block {
                margin-bottom: 30px;

                padding-bottom: 30px;
            }

            .policy-content h2 {
                font-size: 19px;
            }

            .policy-content p,
            .policy-content ul li {
                font-size: 14px;
            }

            .price-table th,
            .price-table td {
                padding: 10px 12px;

                font-size: 12px;
            }

            .change-table th,
            .change-table td {
                padding: 8px 10px;

                font-size: 12px;
            }

            /* 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) {

            .policy-section {
                padding: 40px 0 60px;
            }

            .policy-header h1 {
                font-size: 28px;
            }

            .policy-content h2 {
                font-size: 17px;
            }

            .policy-content p,
            .policy-content ul li {
                font-size: 13px;
            }

            .price-table th,
            .price-table td {
                padding: 8px 10px;

                font-size: 11px;
            }

            .change-table th,
            .change-table td {
                padding: 6px 8px;

                font-size: 11px;
            }

            .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;
            }
        }