.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }

        .glass-panel {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .ambient-glow {
            box-shadow: 0 20px 40px -15px rgba(9, 21, 36, 0.08);
        }

        .nav-active-indicator {
            position: relative;
        }

        .nav-active-indicator::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: currentColor;
        }

        /* ==========================================================================
           HERO SLIDER - SUEÑO TRAVEL
           ========================================================================== */
        .hero-slider-container {
            position: absolute;
            top: -15%;
            left: 0;
            width: 100%;
            height: 130%;
            overflow: hidden;
            z-index: 0;
            will-change: transform;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            z-index: 1;
        }

        .hero-slide.slide-active {
            opacity: 1;
            z-index: 2;
        }

        .hero-slide.slide-leaving {
            opacity: 0;
            z-index: 1;
            transition: opacity 1.2s ease-in-out;
        }

        .hero-slide-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: blur(15px);
            transform: scale(1.08);
            transition: filter 1.2s ease-in-out, transform 1.2s ease-in-out;
        }

        .slide-active .hero-slide-bg {
            filter: blur(0);
            transform: scale(1.02);
        }

        .slide-leaving .hero-slide-bg {
            filter: blur(15px);
            transform: scale(1.08);
        }

        .hero-slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(9, 21, 36, 0.75) 0%, rgba(9, 21, 36, 0.3) 50%, rgba(9, 21, 36, 0.6) 100%);
            z-index: 2;
        }

        .visitar-destinations-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 24px;
        }

        .visitar-dest-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 12px 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .visitar-dest-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .visitar-dest-card.active {
            background: rgba(255, 255, 255, 0.95);
            border-color: #ffddb9;
            box-shadow: 0 10px 20px rgba(255, 221, 185, 0.15);
        }

        .visitar-dest-card.active .dest-name {
            color: #091524;
        }

        .visitar-dest-card .dest-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            padding: 2px;
        }

        .visitar-dest-card.active .dest-icon {
            background: rgba(9, 21, 36, 0.08);
            transform: scale(1.05);
        }

        .visitar-dest-card .dest-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .visitar-dest-card:hover .dest-icon img {
            transform: rotate(15deg);
        }

        .visitar-dest-card .dest-name {
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            color: #ffffff;
            transition: color 0.3s ease;
        }

        /* Slider de fondo para "¿Qué visitar?" */
        .visitar-slider-container {
            position: absolute;
            top: -20%;
            left: 0;
            width: 100%;
            height: 140%;
            overflow: hidden;
            z-index: 0;
            will-change: transform;
        }

        .visitar-slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            z-index: 1;
        }

        .visitar-slide.slide-active {
            opacity: 1;
            z-index: 2;
        }

        .visitar-slide-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: blur(10px);
            transform: scale(1.06);
            transition: filter 1.2s ease-in-out, transform 1.2s ease-in-out;
        }

        .slide-active .visitar-slide-bg {
            filter: blur(0);
            transform: scale(1.01);
        }

        /* Tarjeta Glassmorphic Premium */
        .visitar-glass-card {
            background: rgba(9, 21, 36, 0.45);
            /* Azul noche profundo con opacidad */
            backdrop-filter: blur(20px) saturate(160%);
            -webkit-backdrop-filter: blur(20px) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
            border-radius: 24px;
        }

        .testimonial-slide {
            display: none;
        }

        .testimonial-slide.is-active {
            display: block;
            animation: testimonialFade 400ms ease-out;
        }

        @keyframes testimonialFade {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

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

        .testimonial-photo {
            object-fit: cover;
            object-position: center 32%;
        }

        .testimonial-nav {
            min-width: 44px;
            min-height: 44px;
        }