        :root {
            --yellow-main: #FFD700;
            --yellow-dark: #FFC107;
            --orange-primary: #FF8C00;
            --orange-dark: #E67E22;
            --gray-light: #f8f9fa;
            --gray-dark: #343a40;
            --font-main: 'Poppins', sans-serif;
            --font-cinzel: 'Cinzel', serif;
        }

        html {
            box-sizing: border-box;
            overflow-x: hidden;
            /* Evita scroll lateral */
            width: 100vw;
            /* Limita el ancho máximo */
            height: 100%;
        }

        *,
        *::before,
        *::after {
            box-sizing: inherit;
        }

        /* Medios responsivos por defecto y sin gaps de línea base */
        img,
        svg,
        video {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Respeta usuarios con reducción de movimiento */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
        }

        body {
            font-family: var(--font-main);
            margin: 0;
            padding: 0;
            background: var(--gray-light);
            color: var(--gray-dark);
            line-height: 1.6;
            overflow-x: hidden;
            /* Evita scroll lateral */
            max-width: 100vw;
            /* Limita el ancho máximo */
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- Global Animations & Styles --- */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        h1,
        h2,
        h3 {
            font-weight: 700;
            color: var(--orange-dark);
        }

        section {
            padding: 4rem 1rem;
            width: 100%;
            margin: 0;
            text-align: center;
        }

        header {
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 1.5rem 2rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
        }

        .logo-container a {
            text-decoration: none;
            color: #000;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-container img,
        .logo-container h1 {
            animation: fadeIn 1s ease-out forwards;
        }

        .logo-container img {
            height: 50px;
        }

        .logo-container h1 {
            font-size: 2.5rem;
            font-family: var(--font-cinzel);
            color: #000;
            margin: 0;
            font-weight: 700;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        nav a {
            color: var(--gray-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
            white-space: nowrap;
            /* evita salto a dos líneas */
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--orange-primary);
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            transition: width 0.4s ease;
        }

        nav a:hover,
        nav a.active {
            color: var(--orange-primary);
        }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        .flying-icon {
            height: 50px;
            margin: 0;
        }

        /* Sección principal con carrusel */
        #inicio {
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            max-width: none;
            margin: 0;
            aspect-ratio: 16 / 9;
            color: #fff;
            padding: 8rem 1rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .background-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .background-carousel img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            /* will-change: opacity; Removido para ahorrar memoria GPU en móviles */
        }

        .background-carousel img.active {
            opacity: 1;
        }

        .background-carousel::after {
            content: '';
            position: absolute;
            inset: 0;
            /* shorthand en lugar de top/left/width/height */
            background: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }

        #inicio h1, #inicio h2,
        #inicio p,
        .btn-call-to-action {
            animation: fadeIn 1s ease-out forwards;
        }

        #inicio h1, #inicio h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        #inicio p {
            font-size: 1.5rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .btn-call-to-action {
            display: inline-block;
            background-color: var(--orange-dark);
            color: #fff;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 1.5rem;
            transition: transform 0.3s ease, background-color 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .btn-call-to-action:hover {
            background-color: var(--orange-primary);
            transform: translateY(-5px) scale(1.05);
        }

        .scroll-down-indicator {
            display: none;
        }

        #quienes-somos {
            background-color: var(--gray-light);
            padding: 4rem 1rem;
        }

        #quienes-somos .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .qs-layout {
            display: flex;
            align-items: center;
            gap: 2rem;
            text-align: left;
        }

        .qs-logo-container {
            flex: 1.1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .qs-main-logo {
            width: 100%;
            max-width: 675px;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 15px 25px rgba(255, 140, 0, 0.15));
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .qs-main-logo:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .qs-text-container {
            flex: 1;
        }

        #quienes-somos h1, #quienes-somos h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--orange-dark);
            text-align: left;
        }

        #quienes-somos p {
            font-size: 1.2rem;
            line-height: 1.7;
            color: var(--gray-dark);
            margin-bottom: 1.5rem;
            text-align: left;
        }

        #quienes-somos .logos {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 1.2rem;
            margin-top: 2.5rem;
            flex-wrap: nowrap;
        }

        #quienes-somos .logos img {
            height: 45px;
            max-width: 23%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: filter 0.3s, opacity 0.3s;
        }

        #quienes-somos .logos img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        @media (max-width: 900px) {
            .qs-layout {
                flex-direction: column;
                gap: 0; /* Se elimina el gap porque el PNG ya tiene mucho espacio en blanco */
            }

            .qs-main-logo {
                max-width: 100%;
                width: 100%;
                transform: scale(1.6);
                margin-top: -5%;
                margin-bottom: -15%;
            }

            .qs-main-logo:hover {
                transform: scale(1.65) translateY(-5px);
            }

            #quienes-somos h2,
            #quienes-somos p {
                text-align: center;
            }

            #quienes-somos .logos {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            #quienes-somos h1, #quienes-somos h2 {
                font-size: 2.1rem;
            }

            #quienes-somos p {
                font-size: 1.1rem;
            }

            #quienes-somos .logos {
                gap: 1.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            #quienes-somos .logos img {
                height: 40px;
                max-width: 45%;
            }
        }

        #destinos h1, #destinos h2 {
            font-size: 2.8rem;
            margin-bottom: 3rem;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            margin: 0;
            overflow: visible;
            padding: 0 0 4rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            /* Agrega espacio debajo del carrusel para evitar empalme */
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--yellow-main);
            color: var(--gray-dark);
            border: none;
            border-radius: 50%;
            width: 64px;
            height: 64px;
            font-size: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(255, 140, 0, 0.13);
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s, color 0.3s;
        }

        .carousel-arrow.left {
            left: 2vw;
        }

        .carousel-arrow.right {
            right: 2vw;
        }

        .carousel-arrow:hover {
            background: var(--orange-primary);
            color: #fff;
        }

        .carousel-track {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 600px;
            position: relative;
        }

        .carousel-card {
            min-width: 0;
            height: 700px;
            /* Mantén el alto ajustado */
            width: 38vw;
            max-width: 700px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 2px 16px rgba(52, 58, 64, 0.07);
            overflow: hidden;
            border: 1px solid #ececec;
            padding: 0;
            position: absolute;
            left: 50%;
            top: 0;
            transition:
                transform 0.6s cubic-bezier(.77, 0, .175, 1),
                opacity 0.4s;
            opacity: 0.5;
            z-index: 1;
            pointer-events: none;
        }

        .carousel-card.main {
            transform: translateX(-50%) scale(1);
            opacity: 1;
            z-index: 3;
            box-shadow: 0 8px 32px rgba(255, 140, 0, 0.13);
            pointer-events: auto;
        }

        .carousel-card.left {
            transform: translateX(-120%) scale(0.8);
            opacity: 0.5;
            z-index: 2;
            pointer-events: auto;
            /* Habilitar clics en tarjetas laterales */
        }

        .carousel-card.right {
            transform: translateX(20%) scale(0.8);
            opacity: 0.5;
            z-index: 2;
            pointer-events: auto;
            /* Habilitar clics en tarjetas laterales */
        }

        .carousel-card.hidden {
            opacity: 0;
            pointer-events: none;
            z-index: 1;
        }

        .carousel-card img {
            width: 100%;
            aspect-ratio: 16 / 9;
            height: auto;
            object-fit: cover;
            border-radius: 16px 16px 0 0;
            margin: 0;
            margin-bottom: 0.5rem;
            /* Menos espacio debajo de la imagen */
            box-shadow: 0 2px 8px rgba(255, 140, 0, 0.09);
            background: #f8f9fa;
            display: block;
        }

        .carousel-card .destino-info {
            padding: 1rem 1.2rem 1.2rem 1.2rem;
            display: flex;
            flex-direction: column;
            flex: 1;
            align-items: center;
            justify-content: flex-start;
            text-align: center;
            height: 100%;
            gap: 0.5rem;
            /* Menos espacio entre elementos */
        }

        .carousel-card .destino-info h3 {
            font-size: 1.8rem;
            /* Título ajustado */
            margin: 0;
            font-family: var(--font-main);
            color: var(--orange-dark);
            margin: 0 0 0.5rem 0;
            font-weight: 700;
            letter-spacing: 0.2px;
            text-align: center;
            width: 100%;
        }

        .carousel-card .destino-info p {
            font-size: 1.15rem;
            /* Texto más grande */
            line-height: 1.4;
            color: #555;
            margin: 0 0 2rem 0;
            text-align: center;
            font-weight: 400;
            width: 100%;
            min-height: 90px;
            max-height: 110px;
            overflow: visible;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-card .destino-info a {
            margin: auto 0 3.5rem 0;
            /* Más espacio inferior para el botón, auto-margin top para centrar al final */
            align-self: center;
            background-color: var(--orange-dark);
            color: #fff;
            padding: 0.7rem 1.7rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 2px 8px rgba(255, 140, 0, 0.07);
            transition: background 0.3s, color 0.3s, transform 0.3s;
            border: none;
            letter-spacing: 0.1px;
            text-align: center;
            display: inline-block;
        }

        .carousel-card .destino-info a:hover {
            background: var(--orange-primary);
            color: #fff;
            transform: translateY(-2px) scale(1.04);
        }

        @media (max-width: 1200px) {
            .carousel-card {
                width: 60vw;
            }

            .carousel-arrow {
                width: 48px;
                height: 48px;
                font-size: 2rem;
            }
        }

        @media (max-width: 700px) {
            .carousel-card {
                width: 98vw;
                left: 1vw;
                max-width: 98vw;
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
                left: 0.5vw;
                right: 0.5vw;
            }
        }

        #contacto {
            background-color: var(--gray-light);
        }

        #contacto h2 {
            font-size: 2.8rem;
            margin-bottom: 2rem;
        }

        .contact-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-form {
            width: 100%;
            max-width: 500px;
            background: var(--gray-light);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            /* Asegura que la fuente sea la misma que el resto del cuerpo */
            background-color: #fff;
            /* evita fondo negro en dark-mode/autofill */
            color: #222;
            /* alto contraste sobre fondo blanco */
            caret-color: #222;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #777;
            /* placeholder legible con fondo blanco */
            opacity: 1;
            /* Safari */
        }

        /* Mitigar autofill de Chrome que tiñe de amarillo/gris oscuro */
        input:-webkit-autofill,
        textarea:-webkit-autofill {
            -webkit-box-shadow: 0 0 0 1000px #fff inset;
            box-shadow: 0 0 0 1000px #fff inset;
            -webkit-text-fill-color: #222;
        }

        .contact-form button {
            width: 100%;
            background-color: var(--orange-dark);
            color: #fff;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: var(--orange-primary);
        }

        .social-buttons-container {
            text-align: center;
            margin-top: 1.5rem;
        }

        .social-buttons-container h4 {
            font-size: 1.2rem;
            color: var(--orange-dark);
            margin-bottom: 1rem;
        }

        .social-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .social-buttons a {
            color: #fff;
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .social-buttons a.whatsapp {
            background-color: #25D366;
        }

        .social-buttons a.tiktok {
            background-color: #000;
        }

        .social-buttons a.instagram {
            background-color: #C13584;
        }

        .social-buttons a.facebook {
            background-color: #3b5998;
        }

        .social-buttons a:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .modern-footer {
            background-color: #ffffff;
            color: var(--gray-dark);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid #eaeaea;
            font-family: var(--font-main);
        }

        .modern-footer .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .modern-footer .footer-col h4 {
            font-size: 1.2rem;
            color: var(--orange-dark);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .modern-footer .brand-col h3 {
            font-size: 1.8rem;
            font-family: var(--font-cinzel);
            color: #000;
            margin: 0 0 1rem 0;
        }

        .modern-footer .footer-col p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .modern-footer .links-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .modern-footer .links-col ul li {
            margin-bottom: 0.8rem;
        }

        .modern-footer .links-col ul li a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
            display: inline-block;
        }

        .modern-footer .links-col ul li a:hover {
            color: var(--orange-primary);
            transform: translateX(5px);
        }

        .modern-footer .contact-col p {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modern-footer .footer-socials {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .modern-footer .footer-socials a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #f0f0f0;
            color: var(--gray-dark);
            border-radius: 50%;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s, transform 0.3s;
        }

        .modern-footer .footer-socials a:hover {
            background-color: var(--orange-primary);
            color: #fff;
            transform: translateY(-3px);
        }

        .modern-footer .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #eaeaea;
            color: #777;
            font-size: 0.9rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        /* --- Estilos para el menú móvil --- */
        .menu-toggle,
        .close-menu {
            display: none;
            /* Ocultos por defecto */
            background: none;
            border: none;
            font-size: 2.2rem;
            color: var(--orange-primary);
            cursor: pointer;
            z-index: 1101;
            padding: 0.5rem;
            transition: color 0.3s;
        }

        .menu-toggle:focus,
        .close-menu:focus {
            outline: 2px solid var(--orange-primary);
        }

        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1100;
            transition: opacity 0.3s;
        }

        @media (max-width: 768px) {

            html,
            body {
                width: 100vw;
                max-width: 100vw;
                overflow-x: hidden;
            }

            header {
                flex-direction: row;
                justify-content: space-between;
                padding: 1rem;
                width: 100vw;
                box-sizing: border-box;
                position: fixed;
                /* ya no sticky; fijo en la parte superior */
                top: 0;
                left: 0;
                right: 0;
                height: 84px;
                /* <-- Aumentado: altura del header en móvil */
                z-index: 1202;
                /* más alto que el nav/overlay */
            }

            /* Ajustes para alinear logo/título y esconder el avión en móvil */
            .logo-container {
                max-width: 100vw;
                box-sizing: border-box;
                gap: 12px;
                align-items: center;
                /* asegurar centrado vertical */
                height: 100%;
                /* ocupar la altura del header para alineación */
                display: flex;
                align-self: stretch;
            }

            .logo-container a {
                gap: 12px;
                display: flex;
                align-items: center;
            }

            /* Tamaño del logo reducido/ajustado para móvil (override) */
            .logo-container img {
                height: 60px;
                /* <-- aumentado respecto a la versión móvil previa */
            }

            /* Tamaño del título ajustado para el header mayor */
            .logo-container h1 {
                font-size: 1.6rem;
                /* aumentado para móvil */
                margin: 0;
                line-height: 1;
            }

            /* Oculta el icono del avión solo en móvil */
            .flying-icon {
                display: none !important;
                width: 0;
                height: 0;
                visibility: hidden;
            }

            /* Fija el botón hamburguesa en el header móvil pero sin fondo ni sombra
               para que no se vea como un botón superpuesto cuando se despliega el menú */
            .menu-toggle {
                display: block;
                position: absolute;
                /* fijo relativo al header */
                right: 0.9rem;
                /* separación del borde derecho */
                top: 50%;
                /* centrar verticalmente dentro del header */
                transform: translateY(-50%);
                margin-left: 0;
                /* eliminar empuje automático */
                background: transparent;
                /* <-- transparente para quitar el fondo blanco */
                border: none;
                /* quitar borde */
                border-radius: 0;
                /* opcional: no mostrar forma circular */
                box-shadow: none;
                /* <-- sin sombra */
                z-index: 1203;
                width: 64px;
                /* preserva tamaño */
                height: 64px;
                /* preserva tamaño */
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0;
                -webkit-tap-highlight-color: transparent;
                /* prefijo correcto para WebKit */
                -ms-touch-action: manipulation;
                /* mejora el comportamiento táctil en IE/Edge antiguos */
                touch-action: manipulation;
                /* evita doble-tap u otros gestos por defecto en móviles */
            }

            .menu-toggle i {
                font-size: 1.6rem;
                /* icono más grande (móvil) */
                color: var(--orange-primary);
                /* asegura visibilidad sin fondo */
            }

            /* Evitar foco visual tipo "círculo" en móvil */
            .menu-toggle:focus,
            .menu-toggle:active {
                outline: none;
                box-shadow: none;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100vw;
                /* Inicia fuera de la pantalla */
                width: 100vw;
                max-width: 100vw;
                height: 100vh;
                background-color: #fff;
                box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
                transition: right 0.4s cubic-bezier(.77, 0, .175, 1);
                z-index: 1201;
                padding-top: 4rem;
                display: flex;
                flex-direction: column;
                box-sizing: border-box;
            }

            nav.active {
                right: 0;
                /* Se desliza a la vista */
            }

            .close-menu {
                display: block;
                position: absolute;
                top: 1.2rem;
                right: 1.2rem;
                font-size: 2.2rem;
                color: var(--orange-primary);
                background: #fff;
                border-radius: 50%;
                box-shadow: 0 2px 8px rgba(255, 140, 0, 0.09);
            }

            nav ul {
                flex-direction: column;
                gap: 2rem;
                align-items: center;
                margin-top: 2rem;
                width: 100vw;
                max-width: 100vw;
                box-sizing: border-box;
            }

            nav ul li a {
                font-size: 1.3rem;
                padding: 0.7rem 0;
            }

            #inicio {
                min-height: calc(100vh - 80px); /* Fallback */
                min-height: calc(100dvh - 80px);
                /* Ocupa toda la pantalla descontando el header */
                height: calc(100vh - 80px); /* Fallback */
                height: calc(100dvh - 80px);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 0 1rem;
                /* width: 100vw; */
                /* <-- Eliminado para corregir centrado */
                max-width: 100vw;
                box-sizing: border-box;
                overflow-x: hidden;
                position: relative;
                text-align: center;
            }

            #inicio h1, #inicio h2 {
                font-size: 2.1rem;
                margin-bottom: 1rem;
                color: #fff;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
                width: 100%;
                box-sizing: border-box;
            }

            #inicio p {
                font-size: 1.1rem;
                padding: 0 0.5rem;
                margin-bottom: 2rem;
                color: #fff;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
                width: 100%;
                box-sizing: border-box;
            }

            .btn-call-to-action {
                font-size: 1.05rem;
                padding: 0.8rem 2rem;
                margin-top: 1.5rem;
                margin-bottom: 0;
                width: auto;
                box-sizing: border-box;
            }

            .background-carousel {
                width: 100%;
                height: 100%;
                left: 0;
                top: 0;
                position: absolute;
                z-index: -1;
                overflow: hidden;
            }

            .background-carousel img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                position: absolute;
                left: 0;
                top: 0;
            }

            #quienes-somos {
                width: 100vw;
                max-width: 100vw;
                box-sizing: border-box;
                overflow-x: hidden;
                padding: 4rem 1rem;
                background-color: var(--gray-light);
            }

            #quienes-somos h1, #quienes-somos h2 {
                font-size: 2.8rem;
                margin-bottom: 2rem;
                color: var(--orange-dark);
            }

            #quienes-somos p {
                font-size: 1.2rem;
                line-height: 1.7;
                color: var(--gray-dark);
                margin-bottom: 1.5rem;
            }

            #quienes-somos .logos {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                margin-top: 2.5rem;
                flex-wrap: wrap;
            }

            #quienes-somos .logos img {
                height: 50px;
                filter: grayscale(100%);
                opacity: 0.6;
                transition: filter 0.3s, opacity 0.3s;
            }

            #quienes-somos .logos img:hover {
                filter: grayscale(0%);
                opacity: 1;
            }


            /* Reglas a 768px movidas fuera del bloque anidado — ver @media(max-width:768px) global */

            #destinos {
                width: 100vw;
                max-width: 100vw;
                box-sizing: border-box;
                overflow-x: hidden;
            }

            /* --- Carousel Mobile Refactor --- */
            .carousel-container {
                padding: 0;
                margin: 0;
                width: 100%;
                position: relative;
            }

            .carousel-arrow {
                display: none !important;
                /* Oculta flechas en móvil */
            }

            .carousel-track {
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                width: 100%;
                min-height: clamp(520px, 130vw, 600px);
                /* Altura flexible */
                touch-action: pan-y;
                /* Permite scroll vertical, JS gestiona el horizontal */
            }

            .carousel-card {
                position: absolute;
                width: min(88vw, 380px);
                /* Ancho flexible con máximo */
                height: auto;
                left: 50%;
                transform: translateX(-50%);
                opacity: 0.5;
                z-index: 1;
                pointer-events: none;
                transition:
                    transform 0.5s cubic-bezier(.25, .46, .45, .94),
                    opacity 0.4s;
            }

            .carousel-card.main {
                transform: translateX(-50%) scale(1);
                opacity: 1;
                z-index: 3;
                pointer-events: auto;
            }

            .carousel-card.left {
                transform: translateX(-115%) scale(0.8);
                opacity: 0.4;
                z-index: 2;
            }

            .carousel-card.right {
                transform: translateX(15%) scale(0.8);
                opacity: 0.4;
                z-index: 2;
            }

            .carousel-card.hidden {
                transform: translateX(-50%) scale(0.5);
                opacity: 0;
                pointer-events: none;
                z-index: 1;
            }

            .carousel-card .destino-info h3 {
                font-size: clamp(1.1rem, 4.5vw, 1.3rem);
                /* Tipografía fluida */
            }

            .carousel-card .destino-info p {
                font-size: clamp(0.9rem, 4vw, 1rem);
                min-height: 70px;
            }

            .carousel-card .destino-info a {
                font-size: clamp(0.9rem, 4vw, 1rem);
                padding: 0.6rem 1.5rem;
            }

            /* Oculta el icono de cierre interno en la vista móvil para evitar el empalme
               con el menú hamburguesa; el botón hamburguesa seguirá alternando el menú. */
            .close-menu {
                display: none !important;
                pointer-events: none;
                visibility: hidden;
            }

            /* --- Icono de scroll hacia abajo (solo móvil) --- */
            .scroll-down-indicator {
                display: none;
                /* Oculto por defecto */
            }

            @keyframes bobbing {

                0%,
                100% {
                    transform: translateY(0);
                }

                50% {
                    transform: translateY(10px);
                }
            }

            .scroll-down-indicator {
                display: block;
                position: absolute;
                bottom: 2rem;
                left: 0;
                /* Cambiado de 50% a 0 */
                right: 0;
                /* Añadido para forzar el ancho completo */
                margin: 0 auto;
                /* Centrado horizontal automático */
                width: fit-content;
                /* Ajusta el ancho al contenido */
                color: #fff;
                font-size: 2rem;
                opacity: 0.8;
                z-index: 10;
                transition: opacity 0.4s ease;
                animation: bobbing 2s infinite ease-in-out;
            }

            .scroll-down-indicator.hidden {
                opacity: 0;
                pointer-events: none;
            }
        }

/* ── RESET bloques anteriores ── */
header:not(.hf3-header) { display:none !important; }
footer:not(.hf3-footer)  { display:none !important; }
.yt-overlay, .yt-drawer, .menu-overlay { display:none !important; }

/* ── ANIMACIONES ── */
@keyframes hf3-slidein    { from{opacity:0;transform:translateY(-100%)} to{opacity:1;transform:translateY(0)} }
@keyframes hf3-planefloat { 0%,100%{transform:translateY(0) rotate(-4deg)} 50%{transform:translateY(-6px) rotate(-4deg)} }

/* ── HEADER ── */
.hf3-header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  z-index: 9000 !important;
  height: 86px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 2rem !important;
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07) !important;
  font-family: 'Poppins', sans-serif !important;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease !important;
}

.hf3-header.animate-dropdown {
  animation: hf3-slidein 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
/* Transparencia al bajar */
.hf3-header.hf3-scrolled {
  background: rgba(255,255,255,0.78) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  box-shadow: 0 4px 36px rgba(0,0,0,0.11) !important;
}

/* ── BRAND ── */
.hf3-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  z-index: 2;
}
.hf3-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  order: 1;
  transition: color 0.3s ease;
}
.hf3-brand-name:hover,
.hf3-brand:hover .hf3-brand-name {
  color: var(--orange-primary);
}
.hf3-plane {
  height: 36px;
  width: auto;
  display: block;
  order: 2;
  animation: hf3-planefloat 3s ease-in-out infinite;
}
/* Logo separado en la derecha del header */
.hf3-header-logo {
  height: 140px;
  width: auto;
  display: block;
  margin-left: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.13));
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s;
  position: relative;
  z-index: 2;
}
.hf3-header-logo:hover { transform: scale(1.07) rotate(-2deg); filter: drop-shadow(0 4px 14px rgba(255,140,0,0.28)); }

/* ── NAV DESKTOP ── */
/* Kill viejo nav a::after del sitio */
.hf3-nav ul li a::after,
.hf3-nav ul li a::before,
.hf3-drawer ul li a::after,
.hf3-drawer ul li a::before { display: none !important; content: none !important; transform: none !important; opacity: 0 !important; }
.hf3-nav {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.hf3-nav ul {
  pointer-events: all;
}
.hf3-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  align-items: center;
  height: auto;
}
.hf3-nav ul li {
  display: flex;
  align-items: center;
}
/* Estilo igual al resto del sitio: font Poppins 1rem, color gris oscuro, hover naranja */
.hf3-nav ul li a {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3d3d3d;
  text-decoration: none;
  padding: 0.5rem 1.1rem;
  border-radius: 40px;
  border: 1.5px solid transparent;
  transition: color 0.22s, background 0.22s, border-color 0.22s, transform 0.2s;
  white-space: nowrap;
  display: block;
  position: relative;
}
.hf3-nav ul li a:hover {
  color: #FF8C00;
  background: rgba(255,140,0,0.07);
  border-color: rgba(255,140,0,0.25);
  transform: translateY(-1px);
}
/* Activo: pill naranja sólido — igual estilo que .cta / botones del sitio */
.hf3-nav ul li a.active {
  color: #fff;
  background: #FF8C00;
  border-color: #FF8C00;
  font-weight: 700;
  box-shadow: 0 3px 14px rgba(255,140,0,0.35);
}
.hf3-nav ul li a.active:hover {
  background: #E67E22;
  border-color: #E67E22;
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(255,140,0,0.45);
}

/* ── HAMBURGER ── */
.hf3-hamburger {
  display: none;
  background: none;
  border: 1.5px solid rgba(255,140,0,0.35);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.45rem 0.65rem;
  color: #FF8C00;
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-left: auto;
  transition: background 0.2s, border-color 0.2s;
}
.hf3-hamburger:hover { background: rgba(255,140,0,0.09); border-color: #FF8C00; }

/* ── DRAWER MÓVIL ── */
.hf3-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(80vw, 290px);
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 32px rgba(0,0,0,0.13);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 5.5rem 1.8rem 2rem;
  transition: right 0.38s cubic-bezier(.77,0,.175,1);
  will-change: transform; /* GPU hint para animación de slide en móvil */
}
.hf3-drawer.open { right: 0; }
.hf3-drawer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; width: 100% !important; max-width: 100% !important; align-items: stretch !important; }
.hf3-drawer ul li a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.hf3-drawer ul li a:hover { color: #FF8C00; background: rgba(255,140,0,0.07); }
.hf3-drawer ul li a.active { color: #fff; background: #FF8C00; box-shadow: 0 2px 10px rgba(255,140,0,0.3); }
.hf3-drawer-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: none; border: none;
  font-size: 1.9rem; color: #888; cursor: pointer;
  line-height: 1; padding: 0.3rem;
  transition: color 0.2s;
}
.hf3-drawer-close:hover { color: #FF8C00; }
.hf3-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.36);
  z-index: 9998;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hf3-overlay.open { display: block; }

/* Optimizaciones para laptops de 12-14 pulgadas (pantallas compactas) */
@media (max-width: 1366px) and (min-width: 1024px) {
  header, .hf3-header {
    height: 76px !important;
    padding: 0 1.5rem !important;
  }
  
  .hf3-brand-name {
    font-size: 1.6rem !important;
  }

  .hf3-plane {
    height: 28px !important;
  }

  .hf3-header-logo {
    height: 110px !important;
  }
  
  #inicio {
    padding: 5rem 1rem !important;
  }
  
  #inicio h1 {
    font-size: 2.8rem !important;
  }
  
  #inicio p {
    font-size: 1.25rem !important;
  }
  
  section {
    padding: 3rem 1rem !important;
  }
  
  #quienes-somos h1, #quienes-somos h2 {
    font-size: 2.2rem !important;
  }
  
  .carousel-card {
    height: 600px !important;
    width: 34vw !important;
  }
  
  .carousel-card .destino-info h3 {
    font-size: 1.4rem !important;
  }
  
  .carousel-card .destino-info p {
    font-size: 0.95rem !important;
    min-height: 60px !important;
    margin-bottom: 0.8rem !important;
  }
  
  .carousel-card .destino-info a {
    padding: 0.6rem 1.4rem !important;
    font-size: 0.9rem !important;
  }
}

/* Evitar que el avión se empalme con el menú de navegación en pantallas medianas */
@media (max-width: 1150px) {
  .hf3-plane {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .hf3-nav        { display: none !important; }
  .hf3-hamburger  { display: flex !important; align-items: center; margin-left: auto !important; }
  .hf3-header     { height: 80px !important; padding: 0 1.2rem !important; }
  .hf3-header > a:last-child { display: none !important; }
  .hf3-header-logo{ display: none !important; }
  .hf3-plane      { height: 26px; }
  .hf3-brand-name { font-size: 1.35rem; }
}

/* ── FOOTER ── */
.hf3-footer {
  background: #1c1c1e !important;
  color: #e0e0e0 !important;
  padding: 2.8rem 2rem 1.6rem !important;
  margin-top: 0 !important;
  border: none !important;
  font-family: 'Poppins', sans-serif !important;
}
.hf3-footer-inner { max-width: 1100px; margin: 0 auto; }
.hf3-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hf3-footer-brand-text-social { display: flex; flex-direction: column; justify-content: center; }
.hf3-footer-brand-title-link { text-decoration: none; margin-bottom: 1.2rem; display: block; }
.hf3-footer-brand-title { font-family: 'Cinzel', serif; font-size: 2.2rem; font-weight: 700; color: #fff; line-height: 1.2; transition: color 0.3s ease; }
.hf3-footer-brand-title:hover, .hf3-footer-brand-title-link:hover .hf3-footer-brand-title { color: var(--orange-primary); }
.hf3-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 0; }
.hf3-footer-tagline { margin-top: 1.4rem !important; font-size: 0.85rem !important; line-height: 1.5; color: rgba(255,255,255,0.7) !important; font-style: italic; border-left: 2px solid #FF8C00; padding-left: 10px; }
.hf3-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.9rem; text-decoration: none !important;
  transition: background 0.22s, color 0.22s, transform 0.22s, border-color 0.22s;
}
.hf3-social a:hover { transform: translateY(-3px); color: #fff !important; border-color: transparent; }
.hf3-social a.wa:hover { background: #25D366; }
.hf3-social a.ig:hover { background: #C13584; }
.hf3-social a.fb:hover { background: #3b5998; }
.hf3-social a.tk:hover { background: #333; }
.hf3-footer-col h4 { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.8px; color: rgba(255,255,255,0.32); margin: 0 0 0.9rem; }
.hf3-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.hf3-footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.55) !important; text-decoration: none !important; transition: color 0.2s; }
.hf3-footer-col ul a:hover { color: #FF8C00 !important; }
.hf3-footer-col .wa-icon { color: rgba(255,255,255,0.55); margin-right: 6px; font-size: 0.95rem; }
.hf3-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; padding-top: 1.4rem;
}
.hf3-footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.22) !important; margin: 0 !important; }
/* White Web Dev badge — estructura exacta del usuario */
.hf3-wwd { display: flex; align-items: center; justify-content: center; gap: 15px; font-family: 'Montserrat', sans-serif; }
.hf3-wwd-label { font-size: 11px; color: #888888; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; white-space: nowrap; }
.hf3-wwd a { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.hf3-wwd a svg { transition: transform 0.5s ease; }
.hf3-wwd a:hover svg { transform: rotate(90deg) scale(1.05); }
.hf3-wwd-text { display: flex; flex-direction: column; justify-content: center; }
.hf3-wwd-text .wwd-w { font-family: 'Space Grotesk', 'Poppins', sans-serif; font-weight: 700; font-size: 14px; line-height: 1; letter-spacing: 0.05em; color: #ffffff; }
.hf3-wwd-text .wwd-d { color: #40E0D0; font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 2px; }

@media (max-width: 720px) {
  .hf3-footer-grid   { grid-template-columns: 1fr; gap: 1.8rem; }
  .hf3-footer        { padding: 2.2rem 1.2rem 1.2rem !important; }
  .hf3-footer-bottom { flex-direction: column; text-align: center; align-items: center; }
  .hf3-wwd           { flex-direction: column; gap: 8px; }
}
