/*
Theme Name: FS
Author: Tu Nombre
Description: Madeira Premium Dark Theme
Version: 1.8 - Tipografía y Espaciado Unificados
*/

/* ==========================================================================
   1. VARIABLES Y RESET GLOBAL
   ========================================================================== */
:root {
    --bg-dark: #131E32;
    --bg-blue: #080D17;
    --bg-gradient: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-blue) 100%);
    --gold: #C9A84C;
    --white: #F8F5F0;
    --glass: rgba(248, 245, 240, 0.04);
    --border-glass: rgba(201, 168, 76, 0.25);
}

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

body {
    background: var(--bg-dark) !important;
    background-image: var(--bg-gradient) !important;
    color: var(--white) !important;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==========================================================================
   2. HEADER Y NAVEGACIÓN
   ========================================================================== */
.site-header {
    padding: 20px 8%;
    border-bottom: 1px solid var(--border-glass);
}

.header-logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-logo-img {
    max-width: 160px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.site-logo-img:hover {
    transform: scale(1.02);
}

.site-nav {
    display: flex;
    gap: 20px;
}

.site-nav a,
.btn-volver-minimal {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
}

.site-nav a:hover,
.btn-volver-minimal:hover { 
    opacity: 1; 
    color: var(--gold); 
}

/* --- Banderas Polylang (Premium Look) --- */
.fs-lang-switcher ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 24px; /* Aumentamos el espacio para que no se vean pegadas en PC */
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.fs-lang-switcher li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.fs-lang-switcher ul::before,
.fs-lang-switcher li::before {
    display: none !important;
}

.fs-lang-switcher img {
    width: 24px !important; 
    height: auto !important; /* Vital para que no se deformen */
    aspect-ratio: 4/3; /* Obliga a la bandera a mantener su forma rectangular natural */
    object-fit: cover;
    border-radius: 3px;
    opacity: 0.6; /* Las hacemos más sutiles por defecto */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Sutil sombra de botón */
}

/* Efecto elegante al pasar el ratón */
.fs-lang-switcher img:hover {
    opacity: 1;
    transform: translateY(-2px); /* Se levantan suavemente en lugar de hacer un zoom brusco */
    box-shadow: 0 6px 12px rgba(197, 160, 89, 0.2); /* Sombra dorada al flotar */
}
/* ==========================================================================
   3. FRONT PAGE Y TARJETAS INTERACTIVAS (FUNNEL)
   ========================================================================== */
.fs-hero-premium,
.archive-header-premium {
    text-align: center;
    padding: 80px 20px 60px;
}

.hero-title,
.archive-title,
.fs-funnel-title,
.card-item-title,
.concierge-title,
.ck-modal-content .reservation-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.hero-title,
.archive-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
}

.archive-title span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 10px;
}

.fs-hero-premium .hero-desc {
    font-size: 1.1rem;
    color: rgba(244, 244, 244, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.fs-funnel-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.fs-funnel-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: flex-end;
    transition: all 0.5s ease;
    cursor: pointer;
}

.fs-funnel-card::after {
    content: '→';
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 1.5rem;
    color: var(--gold);
    z-index: 3;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.fs-funnel-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.fs-funnel-card:hover::after {
    transform: translateX(5px);
    opacity: 1;
}

.funnel-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6) saturate(0.8);
    transition: transform 1.2s ease, filter 0.5s ease;
}

.fs-funnel-card:hover .funnel-bg {
    transform: scale(1.05);
    filter: brightness(0.4) saturate(1.2);
}

.card-overlay {
    position: absolute;
    bottom: 0; left: 0; 
    width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(16, 26, 31, 0.95), transparent);
    z-index: 1;
}

.card-info {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.fs-funnel-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.fs-funnel-desc {
    color: rgba(244, 244, 244, 0.7);
    font-size: 0.95rem;
}

/* ==========================================================================
   4. ARCHIVES (CUADRÍCULA DE RESTAURANTES Y ACTIVIDADES)
   ========================================================================== */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    padding: 0 8% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.card-premium {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(0.3) brightness(0.8);
}

.card-premium:hover .card-image-wrapper img {
    transform: scale(1.08);
    filter: grayscale(0) brightness(1);
}

.card-content {
    padding: 30px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-category {
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    display: block;
}

.card-item-title {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
}

.card-description-premium {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* --- Botones Minimalistas de Tarjetas --- */
.card-actions-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.btn-map-minimal,
.btn-whatsapp {
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-bottom: 1px solid var(--gold);
    padding: 0 0 2px 0;
    background: transparent;
    transition: color 0.3s;
    cursor: pointer;
    font-weight: normal;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-map-minimal:hover,
.btn-whatsapp:hover {
    color: var(--gold);
    background: transparent;
}

/* ==========================================================================
   5. SECCIÓN: OFERTA DE CONCIERGE GRATUITO
   ========================================================================== */
.fs-concierge-offer {
    background-color: var(--glass);
    padding: 100px 8%;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 60px;
}

.concierge-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.concierge-image-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.concierge-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: saturate(0.8);
}

.concierge-text-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.concierge-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
}

.concierge-desc {
    color: rgba(248, 245, 240, 0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* ==========================================================================
   6. MODAL DE RESERVA
   ========================================================================== */
.ck-modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(8, 13, 23, 0.85); 
    backdrop-filter: blur(5px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.ck-modal-content {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-glass);
    width: 90%;
    max-width: 500px;
    position: relative;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.ck-modal-close {
    position: absolute;
    top: 20px; right: 20px;
    color: var(--gold);
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s;
}

.ck-modal-close:hover { transform: scale(1.1); }

.ck-modal-content .reservation-title {
    font-size: 1.6rem !important;
    color: var(--white) !important;
    margin-bottom: 5px !important;
}

#modal-restaurant-name {
    color: var(--gold) !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem !important;
    margin-bottom: 25px !important;
    display: block;
}

.form-row-2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
    margin-bottom: 15px !important;
}

.form-group {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 15px !important;
    text-align: left !important;
}

.form-group label {
    font-size: 0.7rem !important;
    color: rgba(248, 245, 240, 0.6) !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
    font-weight: normal !important;
}

.ck-input {
    width: 100% !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    padding: 12px 15px !important;
    font-size: 0.95rem !important;
    border-radius: 4px !important; 
    outline: none !important;
    transition: border-color 0.3s, background-color 0.3s !important;
    font-family: inherit !important;
}

.ck-input option {
    background-color: var(--bg-dark) !important;
    color: var(--white) !important;
    padding: 10px !important;
}

.ck-input:focus {
    border-color: var(--gold) !important;
    background-color: rgba(255, 255, 255, 0.06) !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

.btn-whatsapp-reserve {
    background-color: #25D366 !important;
    color: #ffffff !important;
    width: 100% !important;
    padding: 15px !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.05em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
    margin-top: 15px !important;
}

.btn-whatsapp-reserve:hover {
    background-color: #1EBE5C !important;
}

.reservation-disclaimer {
    font-size: 0.75rem !important;
    color: rgba(248, 245, 240, 0.4) !important;
    text-align: center !important;
    margin-top: 15px !important;
    line-height: 1.4 !important;
}

/* ==========================================================================
   7. OPTIMIZACIÓN MÓVIL GLOBAL (RESPONSIVE)
   ========================================================================== */
@media (max-width: 768px) {
    .site-header { padding: 20px 15px; }
    .header-logo-nav { flex-direction: column; gap: 20px; }
    .header-right { flex-direction: column; gap: 15px; }
    .site-logo-img { max-width: 120px; }
    
    .archive-header-premium { padding: 30px 15px; }
    .archive-title { font-size: 2.2rem; }
    
    li.lang-item {
        display: inline-block !important;
        margin: 10px 15px !important;
    }
    ul:has(li.lang-item) {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        flex-wrap: wrap;
        padding: 0;
    }
    li.lang-item img {
        width: 32px !important;
    }

    .fs-funnel-container,
    .premium-grid {
        grid-template-columns: 1fr;
        padding: 20px 15px 60px;
        gap: 30px;
    }

    .card-premium {
        width: 100% !important;
        max-width: 100vw;
        margin: 0 !important;
    }

    .card-image-wrapper, 
    .card-image-wrapper img {
        width: 100%;
        max-width: 100%;
    }

    .card-content { padding: 20px 15px; }
    .card-item-title { font-size: 1.5rem; }

    .fs-concierge-offer { padding: 60px 20px; }
    .concierge-container { grid-template-columns: 1fr; gap: 30px; }
    .concierge-text-content { text-align: center; align-items: center; }
    .concierge-image-wrapper img { height: 300px; object-fit: cover; }

    /* Polylang Móvil */
    .fs-lang-switcher {
        width: 100%;
        margin-top: 10px;
    }
    
    .fs-lang-switcher ul {
        justify-content: center !important; /* Las centramos perfectamente en el menú móvil */
        gap: 30px !important; /* Espacio amplio para no equivocarse con el dedo */
    }

    li.lang-item {
        display: block !important;
        margin: 0 !important;
    }

    li.lang-item img {
        width: 30px !important; /* Un poco más grandes para pantallas táctiles */
        height: auto !important; /* ELIMINA EL ESTIRAMIENTO */
        aspect-ratio: 4/3 !important;
    }
}

@media (max-width: 600px) {
    .form-row-2 {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    .ck-modal-content {
        width: 92%; 
        padding: 25px 20px !important;
        margin: 10% auto;
        max-height: 85vh; 
        overflow-y: auto; 
        border-radius: 12px;
    }
    .form-group { margin-bottom: 15px; }
    .ck-input { padding: 12px; font-size: 1rem; } 
}

/* ==========================================================================
   CALIFICACIÓN ÚNICA PREMIUM
   ========================================================================== */
.card-ratings-premium {
    display: flex;
    align-items: center;
    margin-top: -5px;
    margin-bottom: 20px; 
    font-family: 'Inter', sans-serif;
}

.rating-item {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.rating-star {
    color: var(--gold); 
    font-size: 1.1rem;
    margin-top: -3px; 
}

/* ==========================================================================
   CÓMO FUNCIONA - PORTADA (QUIET LUXURY)
   ========================================================================== */
.how-it-works-premium {
    padding: 100px 20px;
    background-color: transparent; 
    border-top: 1px solid rgba(197, 160, 89, 0.15); 
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.hiw-container {
    max-width: 1100px;
    margin: 0 auto;
}

.hiw-header {
    text-align: center;
    margin-bottom: 70px;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    text-align: center;
}

.hiw-step {
    padding: 20px;
    transition: transform 0.4s ease;
}

.hiw-step:hover {
    transform: translateY(-8px);
}

.hiw-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(197, 160, 89, 0.15); 
    line-height: 1;
    margin-bottom: 15px;
    font-style: italic;
}

.activity-meta-premium {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #a0aabf; 
    margin-top: 5px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* Botón Flotante Concierge */
.ck-floating-concierge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.ck-floating-concierge .floating-text {
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* ==========================================================================
   NUEVA SECCIÓN DE TRANSPORTES - PREMIUM FULL-BLEED CON VIDEO
   ========================================================================== */
.ck-transport-premium {
    position: relative;
    width: 100%;
    min-height: 80vh; 
    color: #f8f5f0; 
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
    background-color: #0a1120; /* Color de respaldo mientras carga el video */
}

/* Contenedor del video para que cubra toda la sección */
.ck-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* El video en sí, escalado para cubrir el espacio sin distorsionarse */
.ck-video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.ck-transport-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 17, 32, 0.65); /* Opacidad ajustada para dejar ver el video */
    z-index: 1;
}

.ck-transport-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 120px 20px; 
    z-index: 2; 
    position: relative;
}

.ck-transport-content {
    max-width: 700px; 
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ck-transport-premium {
        min-height: 60vh;
    }
    .ck-transport-container {
        padding: 80px 20px;
        text-align: center;
    }
    .ck-transport-content {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* ==========================================================================
   🛠️ BLOQUE UNIFICADOR CITYKEYS (JERARQUÍA, TIPOGRAFÍA Y ESPACIADO)
   ========================================================================== */

/* 1. TIPOGRAFÍA GLOBAL ESTRICTA */
h1, h2, h3, h4, h5, h6,
.hero-title, .concierge-title, .hiw-title, .hiw-step-title, .ck-transport-title, .fs-funnel-title {
    font-family: 'Playfair Display', serif !important;
    font-weight: 400 !important;
    color: #f8f5f0;
}

.hero-desc, .concierge-desc, .hiw-step-desc, .ck-transport-desc, .fs-funnel-desc,
p, input, select, textarea {
    font-family: 'Inter', sans-serif;
    color: #a0aabf;
}

.sub-gold, .gold-subtitle, .ck-transport-subtitle {
    font-family: 'Inter', sans-serif !important;
    color: var(--gold, #c5a059) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
    font-size: 0.75rem !important;
    display: block;
    margin-bottom: 15px !important;
}

/* 2. ESPACIADO (RITMO VISUAL) */
.fs-concierge-offer,
.how-it-works-premium,
.ck-transport-premium {
    padding: 120px 20px !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.05); 
}

h1, h2 { margin-bottom: 20px !important; }
h3 { margin-bottom: 15px !important; }
p { line-height: 1.8 !important; margin-bottom: 30px !important; }

/* 3. UNIFICACIÓN DE BOTONES */
.btn-dorado-concierge,
.ck-btn-dorado-transport {
    display: inline-block !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 16px 36px !important;
    border-radius: 2px !important; 
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    text-align: center;
}

/* Botón Principal (Sólido Dorado) */
.btn-dorado-concierge,
.ck-btn-dorado-transport {
    background-color: var(--gold, #c5a059) !important;
    color: #1a1a1a !important;
    border: 1px solid var(--gold, #c5a059) !important;
}

.btn-dorado-concierge:hover,
.ck-btn-dorado-transport:hover {
    background-color: #f8f5f0 !important;
    border-color: #f8f5f0 !important;
    color: #1a1a1a !important;
}

/* Contenedor principal con altura definida */
.ck-transport-premium {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* El video ocupa todo el fondo */
.ck-video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ck-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Clave para el efecto de fondo */
    pointer-events: none; /* El usuario no puede pausar el video al hacer clic */
}

/* Overlay para asegurar legibilidad del texto */
.ck-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.7); /* Azul oscuro translúcido */
    z-index: 1;
}

/* El contenido siempre por encima del video y el overlay */
.ck-transport-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
/* =================================================== */
/* IDIOMAS PREMIUM - DISEÑO BLINDADO */
/* =================================================== */
.premium-lang-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.premium-lang-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Diseño de los iconos de alta definición */
.premium-lang-menu img {
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important; /* Hace las banderas perfectamente redondas */
    object-fit: cover !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4) !important; /* Sombra elegante */
    transition: transform 0.3s ease !important;
    border: 1px solid rgba(255,255,255,0.2) !important; /* Borde sutil */
}

/* Efecto al pasar el ratón o tocar en móvil */
.premium-lang-menu img:hover {
    transform: scale(1.15) !important;
}

/* =================================================== */
/* SEPARACIÓN DEL VIDEO Y LAS TARJETAS (PORTADA) */
/* =================================================== */
.fs-funnel-container {
    margin-top: 80px !important; /* Añade 80 píxeles de espacio arriba */
}

/* Ajuste opcional para móviles (para que no sea tanto espacio en pantallas pequeñas) */
@media (max-width: 768px) {
    .fs-funnel-container {
        margin-top: 50px !important; 
    }
}