        /* ===== VARIABLES ===== */
        :root {
            --primario: #007680;
            --dorado: #ffb511;
            --blanco: #ffffff;
            --fondo-gris: #f8f9fa;
            --texto-oscuro: #2d3436;
            --texto-claro: #636e72;
            --transicion: all 0.3s ease;
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--texto-oscuro);
            background-color: var(--blanco);
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* ===== NAVEGACIÓN ===== */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 5%;
            background: var(--blanco);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 0;
            text-decoration: none;
        }

        /* El logo tiene fondo negro, usamos mix-blend-mode para que se integre */
        .logo-img {
            height: 70px;
            width: auto;
            mix-blend-mode: multiply;
            /* elimina visualmente el fondo negro en fondo blanco */
            display: block;
        }

        /* ===== NAV LINKS ===== */
        .nav-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--texto-oscuro);
            font-weight: 600;
            transition: var(--transicion);
            font-size: 0.92rem;
        }

        .nav-links a:hover {
            color: var(--primario);
        }

        .visa-link {
            background: #0a3161;
            color: white !important;
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--transicion);
        }

        .visa-link:hover {
            background: #0d4080;
            transform: translateY(-1px);
        }

        /* ===== HAMBURGUESA MÓVIL ===== */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 6px;
            z-index: 1100;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 3px;
            background: var(--texto-oscuro);
            border-radius: 3px;
            transition: var(--transicion);
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* ===== HERO LATERAL ===== */
        /* Hero base (el diseño real está en "Diseño Buscador Mayorista" más abajo) */
        .hero-container {
            display: flex;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
        }

        .hero-title {
            text-align: center;
            color: #ffffff;
            font-size: 2.3rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 10px;
            text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
        }

        .hero-sub {
            text-align: center;
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.05rem;
            max-width: 660px;
            margin: 0 auto 22px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-sub strong {
            color: var(--dorado);
        }

        /* ===== CINTA WHATSAPP ===== */
        .fast-cta {
            background: var(--dorado);
            padding: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            font-weight: 600;
            font-size: 1.05rem;
        }

        .btn-wa {
            background: var(--primario);
            color: white;
            padding: 11px 28px;
            border-radius: 50px;
            text-decoration: none;
            transition: var(--transicion);
        }

        .btn-wa:hover {
            background: #005a63;
            transform: translateY(-2px);
        }

        /* ===== DESTINOS ===== */
        .destinos-container {
            padding: 80px 5%;

        }

        .section-title {
            text-align: center;
            color: var(--primario);
            font-size: 2.55rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .subtitle {
            text-align: center;
            color: var(--texto-claro);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .top-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            width: 100%;
            padding: 0;
        }

        /* ===== FILTROS CON TOGGLE ===== */
        .filter-section {
            text-align: center;
            margin: 40px 0 25px;
        }

        .filter-section>p {
            font-size: 1.15rem;
            margin-bottom: 12px;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 26px;
            border: 2px solid var(--primario);
            background: white;
            color: var(--primario);
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transicion);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
        }

        .filter-btn:hover {
            background: var(--primario);
            color: white;
        }

        .filter-btn.active {
            background: var(--primario);
            color: white;
        }

        /* botón activo con indicador visual de "abierto" */
        .filter-btn.active::after {
            content: ' ✕';
            font-size: 0.8em;
        }

        .full-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        /* Animación de entrada para las tarjetas */
        .full-grid .card {
            animation: fadeInUp 0.35s ease both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== CARDS ===== */
        .card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transicion);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .card-img-container {
            height: 200px;
            overflow: hidden;
        }

        .card-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .card:hover .card-img-container img {
            transform: scale(1.1);
        }

        .card-body {
            padding: 20px;
            text-align: center;
        }

        .card-body h3 {
            color: var(--primario);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .btn-cotizar-destino {
            display: inline-block;
            background: var(--blanco);
            color: var(--primario);
            border: 2px solid var(--primario);
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transicion);
            width: 100%;
            text-align: center;
        }

        .btn-cotizar-destino:hover {
            background: var(--primario);
            color: white;
        }

        /* ===== VISA AMERICANA ===== */
        .visa-section {
            padding: 80px 5%;
            background: linear-gradient(135deg, #0a3161, #001b3a);
            color: #fff;
            text-align: center;
        }

        .visa-container {
            max-width: 820px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            padding: 45px 35px;
            border-radius: 20px;
        }

        .visa-container h2 {
            font-size: 2.4rem;
            margin-bottom: 20px;
        }

        .visa-price {
            background: #fff;
            color: #0a3161;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.55rem;
            font-weight: 700;
            margin: 25px auto;
            display: inline-block;
        }

        .visa-price span {
            font-size: 1rem;
            font-weight: 400;
        }

        .btn-visa {
            background: #b31942;
            color: white;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            margin: 20px 0;
            transition: var(--transicion);
        }

        .btn-visa:hover {
            background: #8f1233;
            transform: translateY(-2px);
        }

        /* ===== ACCORDION ===== */
        .accordion {
            margin-top: 35px;
            text-align: left;
        }

        .accordion-item {
            margin-bottom: 12px;
            border-radius: 12px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Cambiado a <button> para accesibilidad de teclado */
        .accordion-header {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.15);
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: none;
            color: white;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            text-align: left;
            transition: var(--transicion);
        }

        .accordion-header:hover {
            background: rgba(255, 255, 255, 0.22);
        }

        .accordion-header .accordion-icon {
            transition: transform 0.35s ease;
            font-style: normal;
        }

        .accordion-header[aria-expanded="true"] .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 20px;
            background: rgba(0, 0, 0, 0.2);
        }

        .accordion-content.active {
            max-height: 400px;
            padding: 20px;
        }

        .accordion-content ul {
            padding-left: 18px;
        }

        .accordion-content ul li {
            margin-bottom: 8px;
        }

        /* ===== NOSOTROS ===== */
        .nosotros-section {
            background: var(--primario);
            color: white;
            padding: 80px 10%;
            text-align: center;
        }

        .nosotros-section h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .badge-rnt {
            background: var(--dorado);
            color: var(--texto-oscuro);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 10px;
        }

        .nosotros-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 20px auto 0;
            font-weight: 300;
        }

        /* ===== TESTIMONIOS ===== */
        .testimonials-area {
            padding: 80px 0;
            background: var(--fondo-gris);
            overflow: hidden;
        }

        .marquee {
            display: flex;
            width: max-content;
            animation: scroll 50s linear infinite;
            gap: 30px;
            padding: 20px 15px;
        }

        .marquee:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            width: 380px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            flex-shrink: 0;
        }

        .stars {
            color: var(--dorado);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .review-text {
            font-style: italic;
            color: var(--texto-claro);
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .review-author {
            font-weight: 700;
            color: var(--primario);
        }

        .review-destination {
            font-size: 0.82rem;
            color: var(--texto-claro);
            font-weight: 400;
        }

        /* ===== CONTACTO ===== */
        .contacto-section {
            padding: 65px 5%;
            text-align: center;
            background: linear-gradient(135deg, #007680 0%, #004a52 100%);
        }

        .contacto-section .section-title {
            color: #ffffff;
        }

        .contacto-section>p {
            color: rgba(255, 255, 255, 0.92);
        }

        /* ===== FORMULARIO RÁPIDO ===== */
        .lead-form {
            max-width: 540px;
            margin: 34px auto 0;
            background: var(--blanco);
            padding: 22px 24px;
            border-radius: 14px;
            text-align: left;
            border: 1px solid #eef1f2;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .lead-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .lead-form input,
        .lead-form select,
        .lead-form textarea {
            width: 100%;
            padding: 11px 14px;
            margin-top: 10px;
            border: 1.5px solid #dfe4e6;
            border-radius: 9px;
            font-family: inherit;
            font-size: 0.98rem;
            color: var(--texto-oscuro);
            background: var(--blanco);
            transition: var(--transicion);
        }

        .lead-row input {
            margin-top: 0;
        }

        .lead-form input:focus,
        .lead-form select:focus,
        .lead-form textarea:focus {
            outline: none;
            border-color: var(--primario);
            box-shadow: 0 0 0 3px rgba(0, 118, 128, 0.12);
        }

        .lead-form textarea {
            resize: vertical;
        }

        .btn-lead {
            width: 100%;
            margin-top: 14px;
            padding: 13px;
            border: none;
            border-radius: 9px;
            background: var(--primario);
            color: var(--blanco);
            font-family: inherit;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transicion);
        }

        .btn-lead:hover {
            background: #005a63;
            transform: translateY(-2px);
        }

        .lead-note {
            margin-top: 12px;
            font-size: 0.85rem;
            color: var(--texto-claro);
            text-align: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 760px;
            margin: 34px auto 0;
        }

        .contact-card {
            background: var(--blanco);
            padding: 26px;
            border-radius: 14px;
            border: 1px solid #eef1f2;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }

        .contact-card h3 {
            color: var(--primario);
            margin-bottom: 10px;
        }

        .contact-link {
            display: inline-block;
            margin-top: 15px;
            color: var(--primario);
            font-weight: bold;
            text-decoration: none;
            transition: var(--transicion);
        }

        .contact-link:hover {
            color: #005a63;
        }

        /* ===== BOTÓN FLOTANTE WHATSAPP ===== */
        .floating-wa {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: #25D366;
            color: white;
            width: 68px;
            height: 68px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
            z-index: 9999;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .floating-wa:hover {
            transform: scale(1.12);
            box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
        }

        .floating-wa svg {
            width: 36px;
            height: 36px;
            fill: white;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #1a1a1a;
            color: #f1f1f1;
            padding: 50px 5% 25px;
            text-align: center;
        }

        .footer-logo {
            color: var(--dorado);
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .social-linktree {
            background: var(--dorado);
            color: #1a1a1a;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            margin: 20px 0;
            display: inline-block;
            transition: var(--transicion);
        }

        .social-linktree:hover {
            background: #e6a300;
            transform: translateY(-2px);
        }

        .legal {
            font-size: 0.85rem;
            color: #aaa;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }

        .legal p+p {
            margin-top: 10px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
            }

            .hero-left {
                flex: none;
            }
        }

        @media (max-width: 768px) {

            /* NAV MÓVIL */
            .hamburger {
                display: flex;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 0;
                right: 0;
                width: 75%;
                max-width: 320px;
                height: 100vh;
                background: var(--blanco);
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
                padding: 90px 30px 40px;
                gap: 30px;
                z-index: 1050;
                overflow-y: auto;
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links a {
                font-size: 1.1rem;
            }

            .nav-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.45);
                z-index: 1040;
            }

            .nav-overlay.open {
                display: block;
            }

            /* HERO */
            .hero-left {
                padding: 35px 20px;
            }

            .hero-title {
                font-size: 1.7rem;
            }

            .hero-sub {
                font-size: 0.95rem;
            }

            /* SECTION TITLES */
            .section-title {
                font-size: 1.9rem;
            }

            /* GRIDS */
            .top-grid,
            .full-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .lead-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .lead-form {
                padding: 22px;
            }

            /* VISA */
            .visa-container {
                padding: 30px 20px;
            }

            .visa-container h2 {
                font-size: 1.7rem;
            }

            .visa-price {
                font-size: 1.25rem;
                padding: 12px 24px;
            }

            /* NOSOTROS */
            .nosotros-section h2 {
                font-size: 1.9rem;
            }

            .nosotros-section p {
                font-size: 1rem;
            }

            /* ESPACIADOS */
            .destinos-container {
                padding: 50px 5%;
            }

            .visa-section {
                padding: 50px 5%;
            }
        }

        @media (max-width: 480px) {
            .logo-img {
                height: 48px;
            }

            .fast-cta {
                font-size: 0.95rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .nosotros-section {
                padding: 50px 6%;
            }

            .nosotros-section h2 {
                font-size: 1.5rem;
            }

            .visa-container h2 {
                font-size: 1.4rem;
            }

            .visa-price {
                font-size: 1.05rem;
                padding: 10px 16px;
                white-space: normal;
                word-break: break-word;
            }

            .destinos-container {
                padding: 40px 4%;
            }

            .contacto-section {
                padding: 50px 4%;
            }

            .filter-btn {
                padding: 8px 18px;
                font-size: 0.88rem;
            }
        }

        /* ------- Diseño Buscador Mayorista ------- */

        /* BARRA DELGADA — color de marca, ancho completo */
        .hero-container {
            width: 100%;
            min-height: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 55px 5%;
            background: linear-gradient(rgba(0, 118, 128, 0.80), rgba(0, 60, 66, 0.90)),
                url('../Imagenes/CTG.webp');
            background-size: cover;
            background-position: center;
            flex: none;
        }

        /* CONTENIDO INTERNO — texto blanco centrado sobre la foto */
        .hero-left {
            width: 100%;
            max-width: 1000px;
            background: transparent;
            padding: 0;
            border-radius: 0;
            box-shadow: none;
            flex: none;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Pregunta sobre el buscador */
        .hero-left h3 {
            font-size: 1.3rem;
            margin: 4px 0 18px;
            color: #ffffff;
            text-align: center;
            font-weight: 600;
        }

        /* WIDGET — tarjeta blanca sobre la foto */
        #ptw-container {
            width: 100%;
            max-width: 1000px;
            background: #ffffff;
            padding: 16px;
            border-radius: 14px;
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
        }

        .bookerContainer {
            width: 100% !important;
            max-width: 100% !important;
        }

        .onlyBooker_section {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        /* RESPONSIVE TABLET */
        @media (max-width: 768px) {
            .hero-container {
                padding: 38px 5%;
            }

            .hero-left {
                padding: 0;
                border-radius: 0;
            }

            .hero-left h3 {
                font-size: 1.1rem;
            }
        }

        /* RESPONSIVE MÓVIL */
        @media (max-width: 480px) {
            .hero-container {
                padding: 30px 5%;
            }

            .hero-left h3 {
                font-size: 1.05rem;
            }
        }

        /* ===== BANDERAS SVG (reemplazan la librería externa flag-icons) ===== */
        .flag {
            display: inline-block;
            width: 1.33em;
            height: 1em;
            vertical-align: -0.12em;
            border-radius: 2px;
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
            object-fit: cover;
        }

        /* ===== ENLACES LEGALES DEL FOOTER ===== */
        .legal a {
            color: #ccc;
            text-decoration: underline;
        }

        .legal a:hover {
            color: var(--dorado);
        }

        /* ===== FALLBACK DEL BUSCADOR ===== */
        .ptw-fallback {
            text-align: center;
            padding: 10px 6px;
        }

        .ptw-fallback p {
            color: var(--texto-oscuro);
            margin-bottom: 12px;
        }

        .ptw-fallback .btn-lead {
            display: inline-block;
            width: auto;
            padding: 12px 26px;
            text-decoration: none;
        }

        /* ===== MODAL DE CONSENTIMIENTO (COOKIES) ===== */
        .cookie-modal {
            position: fixed;
            inset: 0;
            z-index: 100000;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
            animation: cookieFade 0.25s ease both;
        }

        .cookie-modal[hidden] {
            display: none;
        }

        @keyframes cookieFade {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .cookie-card {
            background: #ffffff;
            color: var(--texto-oscuro);
            width: 100%;
            max-width: 480px;
            max-height: calc(100vh - 40px);
            overflow-y: auto;
            border-radius: 18px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
            padding: 28px 26px;
            text-align: left;
        }

        .cookie-title {
            color: var(--primario);
            font-size: 1.4rem;
            margin-bottom: 12px;
        }

        .cookie-text {
            font-size: 0.94rem;
            line-height: 1.6;
            margin: 0 0 16px;
        }

        .cookie-text a {
            color: var(--primario);
            font-weight: 600;
        }

        .cookie-types {
            list-style: none;
            padding: 0;
            margin: 0 0 22px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .cookie-types li {
            font-size: 0.86rem;
            line-height: 1.5;
            color: var(--texto-claro);
            background: var(--fondo-gris);
            border-radius: 10px;
            padding: 12px 14px;
        }

        .cookie-types strong {
            color: var(--texto-oscuro);
        }

        .cookie-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            padding: 3px 9px;
            border-radius: 20px;
            margin-right: 6px;
            background: #e2e8ea;
            color: var(--texto-claro);
            vertical-align: middle;
        }

        .cookie-tag-on {
            background: var(--primario);
            color: #fff;
        }

        .cookie-actions {
            display: flex;
            gap: 12px;
        }

        .cookie-btn {
            flex: 1;
            padding: 13px 18px;
            border-radius: 50px;
            font-family: inherit;
            font-weight: 700;
            font-size: 0.92rem;
            cursor: pointer;
            transition: var(--transicion);
        }

        .cookie-accept {
            background: var(--primario);
            color: #fff;
            border: none;
        }

        .cookie-accept:hover {
            background: #005a63;
            transform: translateY(-1px);
        }

        .cookie-reject {
            background: transparent;
            color: var(--texto-claro);
            border: 1.5px solid #d4dadd;
        }

        .cookie-reject:hover {
            border-color: var(--primario);
            color: var(--primario);
        }

        /* Bloquea el scroll de fondo mientras el modal está abierto */
        body.cookie-open {
            overflow: hidden;
        }

        @media (max-width: 480px) {
            .cookie-card {
                padding: 24px 20px;
            }

            .cookie-actions {
                flex-direction: column-reverse;
            }

            .cookie-title {
                font-size: 1.25rem;
            }
        }

        /* ===== PÁGINAS LEGALES (Términos / Privacidad) ===== */
        .legal-page {
            max-width: 860px;
            margin: 0 auto;
            padding: 48px 5% 80px;
            color: var(--texto-oscuro);
        }

        .legal-page h1 {
            color: var(--primario);
            font-size: 2rem;
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .legal-page .legal-meta {
            color: var(--texto-claro);
            font-size: 0.9rem;
            margin-bottom: 30px;
        }

        .legal-page h2 {
            color: var(--primario);
            font-size: 1.3rem;
            margin: 34px 0 12px;
            padding-top: 10px;
            border-top: 1px solid #eef1f2;
        }

        .legal-page h3 {
            font-size: 1.05rem;
            margin: 20px 0 8px;
            color: var(--texto-oscuro);
        }

        .legal-page p,
        .legal-page li {
            font-size: 0.98rem;
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .legal-page ul {
            padding-left: 22px;
            margin-bottom: 12px;
        }

        .legal-page a {
            color: var(--primario);
            font-weight: 600;
        }

        .legal-page .legal-note {
            background: var(--fondo-gris);
            border-left: 4px solid var(--dorado);
            padding: 14px 18px;
            border-radius: 8px;
            margin: 18px 0;
            font-size: 0.92rem;
        }

        .legal-back {
            display: inline-block;
            margin-top: 30px;
            color: var(--primario);
            font-weight: 700;
            text-decoration: none;
        }

        .legal-back:hover {
            text-decoration: underline;
        }

        .legal-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 5%;
            background: var(--blanco);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .legal-topbar img {
            height: 56px;
            width: auto;
            mix-blend-mode: multiply;
        }

        .legal-topbar a.legal-home {
            color: var(--primario);
            font-weight: 700;
            text-decoration: none;
            font-size: 0.95rem;
        }