        /* ESTILOS CSS INCORPORADOS */
        :root {
            --font-family: 'Arial', sans-serif;
            --gold-color: #bfa260;
            --blue-visa: #1a1f71;
            --text-color: #000;
            --border-color: #e0e0e0;
            --header-height: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--font-family);
        }

        body {
            background-color: #f9f9f9;
        }

        /* Header Container */
        .main-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #fff;
            padding: 10px 30px;
            border-bottom: 1px solid #ccc;
            height: var(--header-height);
            position: relative;
            z-index: 1000;
        }
.guardar-eso{
    display: none;
}
        /* SECCIÓN IZQUIERDA */
        .header-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-fifa-main {
            height: 60px;
            width: auto;
        }

        .separator {
            width: 1px;
            height: 40px;
            background-color: #ccc;
            display: block; /* Visible por defecto */
        }

        .logo-onlocation {
            height: 25px;
            width: auto;
        }

        /* Selector de país (MEX) */
        .country-selector {
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border-color);
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
            white-space: nowrap;
        }
        
        .flag-icon {
            width: 20px;
            height: 15px;
            object-fit: cover;
        }

        /* SECCIÓN CENTRAL (Navegación) */
        .header-center ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .header-center a {
            text-decoration: none;
            color: var(--text-color);
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .header-center a:hover {
            color: var(--gold-color);
        }

        /* SECCIÓN DERECHA */
        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .visa-container {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .logo-visa {
            height: 60px;
            margin-bottom: 2px;
        }

        .visa-text {
            font-size: 9px;
            color: var(--blue-visa);
            text-transform: uppercase;
        }

        .logo-fifa-small {
            height: 35px;
        }

        .lang-selector {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            white-space: nowrap;
        }

        .login-link {
            text-decoration: none;
            color: var(--text-color);
            font-size: 15px;
            font-weight: 500;
            white-space: nowrap;
        }

        .fa-chevron-down {
            font-size: 12px;
            margin-left: 3px;
        }

        /* MENÚ HAMBURGUESA (Oculto en escritorio) */
        .hamburger-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-color);
        }

        /* =========================================
           MEDIA QUERIES (RESPONSIVE)
           ========================================= */

        /* Tablet y Laptop pequeña (Menor a 1100px) */
        @media (max-width: 1100px) {
            .main-header {
                padding: 10px 20px;
            }

            .guardar-eso{
                display: block;
                }
            .hamburger-menu {
                display: block; /* Mostrar icono hamburguesa */
                order: 3; /* Ponerlo al final */
            }

            /* Convertir el menú central en un panel lateral móvil */
            .header-center {
                position: fixed;
                top: var(--header-height);
                left: -100%; /* Oculto a la izquierda */
                width: 100%;
                height: calc(100vh - var(--header-height));
                background-color: #fff;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                transition: 0.3s ease-in-out;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            .header-center.active {
                left: 0; /* Mostrar menú */
            }

            .header-center ul {
                flex-direction: column;
                gap: 25px;
                text-align: center;
            }

            .header-center ul li a {
                font-size: 18px;
                font-weight: bold;
            }

            /* Ocultar elementos secundarios de la derecha para ahorrar espacio */
            .visa-container, .logo-fifa-small, .separator {
                display: none;
            }
        }

        /* Móvil (Menor a 768px) */
        @media (max-width: 768px) {
            .main-header {
                padding: 10px 15px;
            }
            .guardar-eso{
                display: block;
                }

            .logo-fifa-main {
                height: 40px;
            }

            .logo-onlocation {
                display: none; /* Ocultar en móviles muy pequeños */
            }
            
            .header-left .separator {
                display: none;
            }

            .country-selector {
                padding: 5px 8px;
                font-size: 12px;
            }

            .login-link {
                display: none; /* Moveremos esto al menú móvil en JS o CSS si se desea, por ahora oculto */
            }

            .lang-selector span {
                display: none; /* Ocultar texto "Español", dejar solo flecha o icono */
            }
            
            .header-right {
                gap: 10px;
            }
            
            /* Inyectar botón de login dentro del menú móvil para que no se pierda */
     
        }


        /* Seccion 1 */

        /* --- Resets y Configuración General --- */

body {
    font-family: 'Roboto', sans-serif; /* Fuente para texto general */
    color: #fff;
}

/* Fuentes para Títulos */
h1, h2, h3, .subtitulo, .btn {
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

/* --- Sección Principal (.section-1) --- */
.section-1 {
    display: flex;
    width: 100%;
    overflow: hidden; /* Evita scroll horizontal por el truco de la curva */
}

/* --- Columna Izquierda (Textos) --- */
.izquierda-home {
    padding: 40px 25px;
    background-color: #000;
    position: relative;
    z-index: 1; /* CLAVE: Debe estar por encima de la parte derecha para la curva */
}

/* Tipografía Izquierda */
.subtitulo {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.izquierda-home h1 {
    font-size: 3.5rem; /* Grande e impactante */
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 25px;
}

.descripcion-principal {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 35px;
}

/* Botones */
.botones-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px; /* Bordes completamente redondos */
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #00cfb7; /* Color Turquesa/Cyan similar al diseño */
    color: #000;
    border: 2px solid #00cfb7;
}

.btn-primary:hover {
    background-color: #00a895;
    border-color: #00a895;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
}

/* Info Extra / Legales (Parte inferior) */
.info-extra h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.info-extra p {
    font-size: 0.9rem;
    color: #ccc; /* Texto gris claro */
    margin-bottom: 15px;
    max-width: 650px;
}

.info-extra .legales {
    font-size: 0.75rem;
    color: #888; /* Texto legal más oscuro y pequeño */
}

/* --- Columna Derecha (Video y Marco) --- */
.derecha-home {
    position: relative;
    width: 100%;
    background-color: red;
    /* Altura mínima en móvil para que se vea algo */
    display: flex;
    align-items: center;
    margin: 0;
}

/* Contenedor que superpone video y marco */
.marco-video-container {
    position: relative;
    width: 100%;
    height: 100%; /* CAMBIO: De 70% a 100% para llenar el alto */
    overflow: hidden; /* Asegura que nada se salga */
}

/* El Video (Fondo) */
.video-contenido {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* CAMBIO: De 70% a 100% */
    object-fit: cover;
    z-index: 1;
}

/* El Marco (Frente) */
.imagen-marco-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 2;
    pointer-events: none;
}

/* --- RESPONSIVE: Versión de Escritorio (Desktop) --- */
/* Aquí es donde ocurre la magia de la curva y el diseño a dos columnas */
@media (min-width: 1024px) {
    .section-1 {
        flex-direction: row; /* Lado a lado */
        align-items: stretch; /* Ambas columnas misma altura */
        height: 100vh; /* Fija la altura a la pantalla completa */
    }

    /* Ajustes Columna Izquierda */
    .izquierda-home {
        width: 55%; /* Un poco más ancho para acomodar el texto */
        padding: 80px 60px 40px 80px; /* Más padding para centrar visualmente */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centrar contenido verticalmente */
        
        /* TRUCO DE LA CURVA: */
        /* 1. Creamos la curva en la esquina inferior derecha del bloque negro */
        border-bottom-right-radius: 25vw; 
        /* 2. Sombra sutil para dar profundidad sobre el video (opcional) */
        box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
    }
    
    .izquierda-home h1 {
         font-size: 5rem; /* Título gigante en desktop */
    }

    /* Ajustes Columna Derecha */
    .derecha-home {
        width: 45%;
        height: 100%;
        /* CLAVE PARA LA SUPERPOSICIÓN: */
        /* Movemos la columna derecha hacia la izquierda para que quede DEBAJO
           de la columna izquierda curva */
        margin-left: -10vw; /* Ajusta este valor según la intensidad de la curva deseada */
        z-index: 1; /* Asegura que quede debajo del bloque de texto */
    }
    
    .marco-video-container {
        height: 100%; /* Que ocupe toda la altura disponible en desktop */
    }
}

/* Ajustes para pantallas muy grandes (Big Desktop) */
@media (min-width: 1600px) {
      .izquierda-home h1 { font-size: 6rem; }
      .izquierda-home { padding-left: 120px; }
}

/* Parte 2 privadas */

/* ------------------------------------------- */
/* --- 1. Base Styles (Desktop/Large Screens) --- */
/* ------------------------------------------- */

.seccion-privadas {
    background-color: #1a1f71;
    
    display: flex;
    margin: 0% 20% 0% 20%;
    border-radius: 2rem;
    margin-top: 5%;

    /* --- Agregando la imagen decorativa --- */
    background-image: url('../img/home/purple-bg.webp'); /* Reemplaza con la ruta correcta */
    background-repeat: no-repeat; /* Para que la imagen no se repita */
    background-position: right bottom; /* La posiciona en la esquina inferior derecha */
    background-size: 150px 100px; /* Define un tamaño específico para la imagen (ejemplo) */
    /* background-size: contain; */ /* O para que se ajuste sin cortar */
}

/* Base styles for the text container */
.text-izquierdo {
    width: 40%; /* Takes 40% of the container width */
    height: auto;
    margin: 5%;
    color: white;
    /* Centering/Column setup */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Changed to flex-start for true left-alignment */
    justify-content: center;
}

.text-izquierdo h1,
.text-izquierdo p {
    text-align: left;
    /* The h1 and p styles below are fine as they are */
}
.text-izquierdo h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.text-izquierdo p {
    font-family: 'Arial', sans-serif;
}

/* Base styles for the button */
.text-izquierdo button {
    width: 50%; /* 50% of the text container width */
    height: 15%; /* Height might be better defined with padding/min-height */
    padding: 10px 20px; /* Added padding for better button sizing */
    border-radius: 0rem 10rem 10rem 10rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: black;
    border: none;
    cursor: pointer;
    margin-top: 15px; /* Added margin to separate from text */
}

.text-izquierdo button:hover {
    background-color: rgb(145, 145, 141);
}

/* Base styles for the image container */
.imagen-derecho {
    width: 60%; /* Takes 60% of the container width */
    display: flex;
    padding: 5% 0% 0% 0%;
}

.imagen-derecho img {
    width: 100%;
    height: auto;
    margin-top: auto;
    max-height: 400px;
    object-fit: cover; /* Added for better image scaling */
}


/* ---------------------------------------------- */
/* --- 2. Media Query (Tablet/Small Screens) --- */
/* ---------------------------------------------- */
@media (max-width: 1024px) {
    .seccion-privadas {
        /* Reduce side margins for slightly smaller screens */
        margin: 0% 10% 0% 10%;
    }
}


/* --------------------------------------------- */
/* --- 3. Media Query (Mobile/Vertical View) --- */
/* --------------------------------------------- */
@media (max-width: 768px) {
    .seccion-privadas {
        /* 1. Change to column layout */
        flex-direction: column;
        
        /* 2. Remove side margins and add top/bottom margin */
        margin: 20px 5% 20px 5%; 
        
        /* 3. Reduce border radius for a better mobile look */
        border-radius: 1.5rem;
    }

    .text-izquierdo {
        /* 4. Text takes full width */
        width: 90%; /* Using 90% or 100% is common */
        margin: 5%; /* Revert to 5% margin (5% left + 90% width + 5% right = 100%) */
        align-items: center; /* Center content when stacked */
        text-align: center; /* Center text content */
    }

    /* 5. Center align all text elements */
    .text-izquierdo h1,
    .text-izquierdo p {
        text-align: center;
    }
    
    .text-izquierdo button {
        /* 6. Button takes a decent width for mobile tapping */
        width: 70%;
        margin-left: 0;
        margin-right: 0;
    }

    .imagen-derecho {
        /* 7. Image takes full width */
        width: 100%;
        padding: 0; /* Remove top padding */
        /* Center the image/container */
        align-self: center; 
        justify-content: center;
        overflow: hidden; /* Important to prevent image overflow */
        border-radius: 0 0 1.5rem 1.5rem; /* Match bottom container radius */
    }
    
    .imagen-derecho img {
        /* Ensure image fits within its container and doesn't push the viewport */
        max-height: 300px; /* Make the image smaller on mobile */
        width: 100%;
    }
}

/* Pivadas */



.contenedor-ofertas-titulo {
 background-color: rgb(246, 246, 246);
 align-items: center;
 justify-content: center;
 padding: 10% 5% 1% 5%;
 display: grid;
}

/* Título responsive */
.contenedor-ofertas-titulo h1 {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 
  font-size: clamp(24px, 5vw, 40px); /* Tamaño fluido */
  color: rgb(0, 0, 0);
  font-weight: 900; 
  text-shadow: 
    1px 0 0 currentColor,
    -1px 0 0 currentColor,
    0 1px 0 currentColor,
    0 -1px 0 currentColor;
  text-align: center; /* Centrado en móviles */
}

/* Subtítulo responsive */
.contenedor-ofertas-titulo h3 {
    margin: 0;
    font-size: clamp(14px, 3vw, 18px); /* Tamaño fluido */
    margin: 2% 0% 2% 0%;
    color: rgb(0, 0, 0);
    font-family: Arial, Helvetica, sans-serif;
    text-align: center; /* Centrado en móviles */
    line-height: 1.4; /* Mejor legibilidad */
}

/* Contenedor principal de ofertas - cambia a columna en móviles */
.contenedor-ofertas{
    width: 100%;
    display: flex;
    flex-direction: row; /* Por defecto en fila */
    justify-content: center;
    flex-wrap: wrap; /* Permite que se envuelvan en móviles */
    gap: 20px; /* Espacio entre elementos */
    padding: 0 5%;
    box-sizing: border-box;
}

/* Cajas de ofertas - responsive */
.box-ofertas-oferta{
    background-color: rgb(255, 255, 255);
    width: 100%; /* Por defecto ocupa todo el ancho en móviles */
    max-width: 600px; /* Ancho máximo */
    display: flex;
    flex-direction: column; /* En móviles, imagen arriba, texto abajo */
    background-color: rgb(255, 255, 255);
    border-radius: 2rem;
    overflow: hidden;
    margin: 1% 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Sombra para mejor separación visual */
}

/* Imagen dentro de la oferta */
.box-ofertas-oferta img {
    width: 100%;
    height: 200px; /* Altura fija para consistencia */
    object-fit: cover; /* Asegura que la imagen cubra el espacio sin distorsión */
}

.texto-contenedor{
    padding: 8%;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left; 
    justify-content: center;
    margin: auto;
    box-sizing: border-box;
}

/* Título dentro de la caja de ofertas */
.texto-contenedor h3{
    margin: 0 0 10px 0;
    font-size: clamp(18px, 4vw, 25px); /* Tamaño fluido */
    color: rgb(0, 0, 0);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    line-height: 1.3;
}

/* Párrafo dentro de la caja de ofertas */
.texto-contenedor p{
    font-size: clamp(12px, 2.5vw, 13px); /* Tamaño fluido */
    color: rgb(0, 0, 0);
    line-height: 1.5;
}

/* Contenedor de botones */
.botones-presentacion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 5%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Botón responsive */
.boton-interes {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 12px 24px;
    border: none;
    border-radius: 0rem 10rem 10rem 10rem;
    border: solid 2px #a3a3a3;
    cursor: pointer;
    font-size: clamp(14px, 3vw, 16px); /* Tamaño fluido */
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    width: 100%; /* Botón ocupa todo el ancho en móviles */
    max-width: 300px; /* Ancho máximo */
    text-align: center;
}

/* Efecto hover */
.boton-interes:hover {
    background-color: #919191;
}

/* Texto debajo del botón */
.texto-compra {
    margin: 0;
    font-size: clamp(12px, 2.5vw, 14px); /* Tamaño fluido */
    color: #333;
    text-align: center;
    line-height: 1.4;
    font-style: italic;
    padding: 0 5%;
}

/* Enlace */
.ESTAMADRE{
    color: rgb(118, 118, 118);
    text-decoration: none;
    word-break: break-all; /* Evita que el email se desborde */
}

/* =========================================== */
/* MEDIA QUERIES PARA DISPOSITIVOS MÁS GRANDES */
/* =========================================== */

/* Tablet: 768px en adelante */
@media (min-width: 768px) {
    .contenedor-ofertas-titulo {
        padding: 1% 10% 1% 10%;
    }
    
    .contenedor-ofertas {
        flex-direction: row; /* Vuelve a fila en tablet */
        justify-content: space-between;
        padding: 0 2%;
    }
    
    .box-ofertas-oferta {
        width: 48%; /* Dos columnas en tablet */
        flex-direction: row; /* Imagen y texto en fila */
    }
    
    .box-ofertas-oferta img {
        width: 40%; /* Imagen ocupa el 40% */
        height: auto; /* Altura automática */
        max-height: 250px; /* Altura máxima */
    }
    
    .texto-contenedor {
        width: 60%; /* Texto ocupa el 60% */
        padding: 5%;
    }
    
    .boton-interes {
        width: auto; /* Ancho automático en tablet/desktop */
        padding: 12px 30px;
    }
}

/* Desktop: 1024px en adelante */
@media (min-width: 1024px) {
    .contenedor-ofertas-titulo {
        padding: 1% 15% 1% 15%;
    }
    
    .contenedor-ofertas {
        padding: 0 5%;
    }
    
    .box-ofertas-oferta {
        width: 48%; /* Mantiene dos columnas */
    }
    
    .contenedor-ofertas-titulo h1,
    .contenedor-ofertas-titulo h3 {
        text-align: left; /* Alineación izquierda en desktop */
    }
}

/* Pantallas muy grandes: 1200px en adelante */
@media (min-width: 1200px) {
    .box-ofertas-oferta {
        max-width: 700px; /* Aumenta el ancho máximo */
    }
}

/* Pantallas pequeñas (móviles): ajustes adicionales */
@media (max-width: 480px) {
    .box-ofertas-oferta {
        border-radius: 1rem; /* Bordes menos redondeados en móviles */
        margin: 10px 0;
    }
    
    .botones-presentacion {
        padding: 15px 5%;
    }
    
    .texto-contenedor {
        padding: 15px;
    }
    
    .boton-interes {
        padding: 15px 20px; /* Más padding para mejor tappability */
    }
}

/* FIFA COTENEDOR */

      
        
        .FIFA-CONTENEDOR {
            background-color: #0a0e17;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }
        
        .contenedor-accesos {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .fondo-animado {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .particula {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 150, 255, 0.15) 0%, rgba(0, 150, 255, 0) 70%);
            filter: blur(1px);
            animation: flotar 15s infinite linear;
        }
        
        @keyframes flotar {
            0% { transform: translateY(0px) translateX(0px); }
            33% { transform: translateY(-30px) translateX(20px); }
            66% { transform: translateY(20px) translateX(-20px); }
            100% { transform: translateY(0px) translateX(0px); }
        }
        
        .rayo-laser {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 168, 255, 0.7), transparent);
            filter: blur(1px);
            animation: rayo 8s infinite linear;
        }
        
        @keyframes rayo {
            0% { opacity: 0; transform: translateX(-100%); }
            10% { opacity: 1; }
            20% { opacity: 1; }
            30% { opacity: 0; transform: translateX(100%); }
            100% { opacity: 0; transform: translateX(100%); }
        }
        
        .contenedor-interno {
            max-width: 1300px;
            width: 100%;
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        /* Sección de texto a la izquierda */
        .texto-accesos {
            padding-right: 20px;
            animation: entradaIzquierda 1.2s ease-out;
        }
        
        @keyframes entradaIzquierda {
            0% { transform: translateX(-100px); opacity: 0; }
            100% { transform: translateX(0); opacity: 1; }
        }
        
        .texto-accesos h1 {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(90deg, #ffffff, #4da6ff, #00a8ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            animation: tituloParpadeo 3s infinite alternate;
        }
        
        @keyframes tituloParpadeo {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        
        .texto-accesos p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #cccccc;
            line-height: 1.7;
        }
        
        .desplegable {
            margin-bottom: 15px;
            border-radius: 12px;
            background: rgba(20, 30, 48, 0.5);
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            border-left: 5px solid transparent;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .desplegable:hover {
            transform: translateX(10px);
            background: rgba(30, 40, 58, 0.7);
            border-left-color: #00a8ff;
            box-shadow: 0 10px 25px rgba(0, 168, 255, 0.2);
        }
        
        .desplegable.activo {
            background: rgba(30, 40, 58, 0.9);
            border-left-color: #00a8ff;
            box-shadow: 0 15px 30px rgba(0, 168, 255, 0.3);
            transform: translateX(15px) scale(1.02);
        }
        
        .desplegable-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 25px;
            cursor: pointer;
            position: relative;
            z-index: 3;
        }
        
        .desplegable-titulo {
            font-size: 1.35rem;
            font-weight: 700;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .contador-tiempo {
            font-size: 0.85rem;
            color: #00a8ff;
            font-weight: bold;
            background: rgba(0, 168, 255, 0.15);
            padding: 6px 14px;
            border-radius: 20px;
            display: inline-block;
            min-width: 50px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 168, 255, 0.3);
        }
        
        .desplegable.activo .contador-tiempo {
            background: rgba(0, 168, 255, 0.3);
            box-shadow: 0 0 15px rgba(0, 168, 255, 0.5);
        }
        
        .desplegable-icono {
            color: #00a8ff;
            font-size: 1.3rem;
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .desplegable.activo .desplegable-icono {
            transform: rotate(180deg);
        }
        
        .desplegable-contenido {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            color: #d0d0d0;
            font-size: 1.05rem;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }
        
        .desplegable-contenido p {
            padding: 0 25px 25px;
            margin-bottom: 0;
        }
        
        .desplegable.activo .desplegable-contenido {
            max-height: 300px;
        }
        
        .barra-progreso {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #00a8ff, #0088cc);
            width: 0%;
            z-index: 4;
            transition: width 5s linear;
            border-radius: 0 0 0 12px;
        }
        
        .desplegable.activo .barra-progreso {
            width: 100%;
        }
        
        .marca-fifa {
            color: #00a8ff;
            font-weight: 900;
            text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
        }
        
        .nota {
            font-style: italic;
            font-size: 0.95rem;
            color: #aaaaaa;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }
        
        .nota::before {
            content: "ℹ️";
            position: absolute;
            left: -10px;
            top: -10px;
            font-size: 1.2rem;
            background: rgba(0, 168, 255, 0.1);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Sección de imágenes a la derecha */
        .imagenes-acceso {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 700px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
            transform: perspective(1000px) rotateY(5deg);
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: entradaDerecha 1.2s ease-out 0.3s both;
        }
        
        @keyframes entradaDerecha {
            0% { transform: translateX(100px) rotateY(10deg); opacity: 0; }
            100% { transform: translateX(0) rotateY(5deg); opacity: 1; }
        }
        
        .imagenes-acceso:hover {
            transform: perspective(1000px) rotateY(0deg) translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 168, 255, 0.2);
        }
        
        .galeria-principal {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 0;
            height: 100%;
        }
        
        .galeria-fila {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            height: 100%;
        }
        
        .imagen-estatica {
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            border: 2px solid transparent;
            filter: grayscale(0.3);
        }
        
        .imagen-estatica:hover {
            filter: grayscale(0);
            border-color: rgba(0, 168, 255, 0.7);
            z-index: 2;
            transform: scale(1.05);
        }
        
        .imagen-estatica img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .imagen-estatica:hover img {
            transform: scale(1.1);
        }
        
        .imagen-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 25px;
            transform: translateY(100%);
            transition: transform 0.5s ease;
            z-index: 3;
        }
        
        .imagen-estatica:hover .imagen-info {
            transform: translateY(0);
        }
        
        .imagen-info h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        
        .imagen-info .badge {
            display: inline-block;
            background: linear-gradient(90deg, #00a8ff, #0088cc);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            box-shadow: 0 4px 12px rgba(0, 168, 255, 0.3);
        }
        
        .efecto-borde {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid transparent;
            border-radius: 18px;
            pointer-events: none;
            z-index: 1;
            animation: bordeBrillante 3s infinite linear;
        }
        
        @keyframes bordeBrillante {
            0% { border-color: rgba(0, 168, 255, 0.1); }
            50% { border-color: rgba(0, 168, 255, 0.5); }
            100% { border-color: rgba(0, 168, 255, 0.1); }
        }
        
        .logo-fifa {
            position: absolute;
            top: 40px;
            right: 40px;
            font-size: 2rem;
            color: #00a8ff;
            font-weight: 900;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(0, 168, 255, 0.5);
            z-index: 2;
        }
        
        @media (max-width: 1200px) {
            .contenedor-interno {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .imagenes-acceso {
                height: 600px;
                order: 2;
                transform: perspective(1000px) rotateY(0deg);
            }
            
            .texto-accesos {
                padding-right: 0;
                order: 1;
            }
            
            .texto-accesos h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .contenedor-accesos {
                padding: 20px 15px;
            }
            
            .imagenes-acceso {
                height: 400px;
            }
            
            .galeria-fila {
                grid-template-columns: 1fr;
            }
            
            .texto-accesos h1 {
                font-size: 2rem;
            }
            
            .desplegable-titulo {
                font-size: 1.1rem;
            }
            
            .logo-fifa {
                top: 20px;
                right: 20px;
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .imagenes-acceso {
                height: 500px;
            }
            
            .galeria-fila {
                grid-template-columns: 1fr;
            }
        }


        /* OCACION */

        /* Estilos base existentes - mantenidos */
.locacion-fifa {
   display: flex;
   padding: 0% 15% 0% 15%;
} 

.imagen-locacion {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2%;
} 
.imagen-locacion img {
  width: 80%;
  margin-top: 5%;
  height: auto;
}

.texto-locacion {
  width: 50%;
  padding-right: 4%;
}

.texto-locacion h1 {
    font-size: 3.5em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.texto-locacion p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-top: 10%;
}

.Borde-izquierdo {
  border-left: 2px solid rgb(240, 167, 64);
  padding-left: 10px;
  padding-top: 0;
  margin-top: 10%;
  padding-bottom: 0;
  padding-right: 0;
}

.Borde-izquierdo h3 {
    margin-bottom: 2px;
    font-size: 2.5em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.Borde-izquierdo p {
    margin-top: -20px;
}

/* =========================================== */
/* MEDIA QUERIES PARA HACERLO RESPONSIVE */
/* =========================================== */

/* Para tablets grandes y laptops pequeñas */
@media (max-width: 1200px) {
  .locacion-fifa {
    padding: 0% 8% 0% 8%;
  }
  
  .texto-locacion h1 {
    font-size: 3em;
  }
  
  .Borde-izquierdo h3 {
    font-size: 2.2em;
  }
}

/* Para tablets */
@media (max-width: 992px) {
  .locacion-fifa {
    flex-direction: column;
    padding: 0% 10% 0% 10%;
  }
  
  .imagen-locacion {
    width: 100%;
    padding: 5% 2%;
  }
  
  .imagen-locacion img {
    width: 90%;
    margin-top: 0;
  }
  
  .texto-locacion {
    width: 100%;
    padding-right: 0;
  }
  
  .texto-locacion h1 {
    font-size: 2.8em;
    margin-top: 20px;
  }
  
  .texto-locacion p {
    margin-top: 5%;
  }
  
  .Borde-izquierdo {
    margin-top: 8%;
  }
}

/* Para tablets pequeñas y móviles grandes */
@media (max-width: 768px) {
  .locacion-fifa {
    padding: 0% 6% 0% 6%;
  }
  
  .texto-locacion h1 {
    font-size: 2.5em;
  }
  
  .Borde-izquierdo h3 {
    font-size: 2em;
  }
  
  .texto-locacion p {
    font-size: 1.1em;
  }
}

/* Para móviles */
@media (max-width: 576px) {
  .locacion-fifa {
    padding: 0% 4% 0% 4%;
  }
  
  .imagen-locacion {
    padding: 8% 2%;
  }
  
  .imagen-locacion img {
    width: 100%;
  }
  
  .texto-locacion h1 {
    font-size: 2em;
  }
  
  .Borde-izquierdo h3 {
    font-size: 1.7em;
    margin-bottom: 15px;
  }
  
  .texto-locacion p {
    font-size: 1em;
    line-height: 1.5;
  }
  
  .Borde-izquierdo p {
    margin-top: -15px;
  }
}

/* Para móviles muy pequeños */
@media (max-width: 400px) {
  .texto-locacion h1 {
    font-size: 1.8em;
  }
  
  .Borde-izquierdo h3 {
    font-size: 1.5em;
  }
  
  .texto-locacion p {
    font-size: 0.95em;
  }
}

/* FAQS
 */
.faq-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 10%;
    padding: 20px;
    font-family: Arial, sans-serif;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-header {
    margin-bottom: 30px;
    text-align: center;
}

.faq-header h1 {
    font-size: 32px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.faq-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.faq-main {
    display: flex;
    gap: 50px;
    width: 100%;
}

.faq-title {
    flex: 0 0 250px;
    background-color: #f8f9fa;
    padding: 25px 20px;
    border-radius: 8px;
    height: fit-content;
    top: 20px;
}

.faq-title h2 {
    font-size: 32px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.faq-title p {
    color: #666;
    font-size: 16px;
}

.faq-content {
    flex: 1;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ddd;
}

.faq-question {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 18px 20px;
    background-color: white;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-size: 18px;
    color: #191919;
    font-weight: 600;
    flex: 1;
    margin-right: 15px;
}

.toggle-icon {
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 20px;
    flex-shrink: 0;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    background: #ff0202;
    transition: transform 0.3s ease;
}

.toggle-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.toggle-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-item.active .toggle-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer p {
    padding: 20px;
    color: #444;
    margin: 0;
}

.faq-answer ul {
    margin: 0 20px 20px 40px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #555;
}

.faq-item.active {
    box-shadow: 0 3px 10px rgba(255, 2, 2, 0.08);
}

/* Media Queries para Responsive */

/* Tablets */
@media (max-width: 992px) {
    .faq-container {
        margin-top: 8%;
        padding: 25px;
    }
    
    .faq-main {
        gap: 40px;
    }
    
    .faq-title {
        flex: 0 0 220px;
        padding: 20px 15px;
    }
    
    .faq-title h2 {
        font-size: 28px;
    }
    
    .faq-title p {
        font-size: 15px;
    }
    
    .faq-question h3 {
        font-size: 17px;
    }
}

/* Móviles */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .faq-container {
        flex-direction: column;
        gap: 30px;
        margin-top: 5%;
        padding: 20px;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
    }
    
    .faq-header {
        margin-bottom: 20px;
    }
    
    .faq-header h1 {
        font-size: 28px;
    }
    
    .faq-header p {
        font-size: 15px;
    }
    
    .faq-main {
        flex-direction: column;
        gap: 30px;
    }
    
    .faq-title {
        flex: none;
        width: 100%;
        position: static;
        padding: 20px;
        text-align: center;
        background-color: white;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }
    
    .faq-title h2 {
        font-size: 26px;
    }
    
    .faq-question {
        padding: 16px 15px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .toggle-icon {
        width: 22px;
        height: 22px;
        margin-left: 15px;
    }
    
    .faq-answer p {
        padding: 15px;
        font-size: 15px;
    }
    
    .faq-answer ul {
        margin: 0 15px 15px 30px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .faq-container {
        padding: 15px;
        margin-top: 3%;
    }
    
    .faq-header h1 {
        font-size: 24px;
    }
    
    .faq-header p {
        font-size: 14px;
    }
    
    .faq-title {
        padding: 18px 15px;
    }
    
    .faq-title h2 {
        font-size: 22px;
    }
    
    .faq-title p {
        font-size: 14px;
    }
    
    .faq-question {
        padding: 14px 12px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .toggle-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer p {
        padding: 12px;
        font-size: 14px;
    }
}
        /* FOOTER */

        /* Estilos generales del footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 20px 0;
    font-size: 13px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sección superior */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

/* Logos */
.footer-logo-section {
    display: flex;
    align-items: center;
    min-width: 180px;
}

.logo-onlocation {
    height: 45px;
    max-width: 100%;
    object-fit: contain;
}

/* Botón de menú móvil (oculto en desktop) */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

/* Navegación principal */
.footer-nav {
    display: flex;
    gap: 20px;
    flex-grow: 1;
    justify-content: flex-start;
    margin-left: 50px;
    transition: all 0.3s ease;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 1;
}

/* Sección de newsletter */
.footer-newsletter {
    text-align: right;
    min-width: 250px;
}

.footer-newsletter p {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: bold;
}

.newsletter-btn {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #ffffff;
    padding: 8px 15px;
    font-size: 12px;
    letter-spacing: 1px;
    transition: background-color 0.2s;
}

.newsletter-btn:hover {
    background-color: #222222;
}

/* Separador horizontal */
.footer-middle {
    border-top: 1px solid #292929;
    padding: 15px 0;
    display: flex;
    justify-content: center;
}

/* Iconos de redes sociales */
.social-icons a {
    color: #ffffff;
    font-size: 20px;
    margin: 0 15px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.social-icons a:hover {
    opacity: 1;
}

/* Derechos de autor */
.footer-copyright {
    text-align: center;
    padding: 10px 0;
    color: #a0a0a0;
}

/* Enlaces legales inferiores */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
    border-top: 1px solid #292929;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Contacto y números de teléfono */
.footer-contact {
    text-align: center;
    padding: 10px 0 0;
    font-size: 12px;
    color: #a0a0a0;
}

/* ============ RESPONSIVE ============ */

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .footer-nav {
        margin-left: 30px;
        gap: 15px;
    }
    
    .footer-logo-section {
        min-width: 150px;
    }
    
    .logo-onlocation {
        height: 40px;
    }
    
    .footer-contact p {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* Tablet pequeña (600px - 768px) */
@media screen and (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 15px;
    }
    
    .footer-logo-section {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    /* Mostrar botón de menú móvil */
    .mobile-menu-toggle {
        display: block;
        margin: 0 auto 15px;
    }
    
    /* Ocultar menú por defecto en móvil */
    .footer-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        gap: 12px;
        padding: 15px 0;
        border-top: 1px solid #292929;
    }
    
    /* Clase para mostrar el menú cuando está activo */
    .footer-nav.active {
        display: flex;
    }
    
    .footer-nav a {
        font-size: 14px;
        padding: 8px 0;
        border-bottom: 1px solid #333;
        white-space: normal;
    }
    
    .footer-nav a:last-child {
        border-bottom: none;
    }
    
    .footer-links {
        gap: 10px;
        padding: 15px 0;
    }
    
    .footer-links a {
        font-size: 11px;
        white-space: normal;
        text-align: center;
        flex-basis: calc(50% - 10px);
    }
    
    .social-icons a {
        margin: 0 10px;
        font-size: 18px;
    }
    
    .footer-contact p {
        font-size: 10px;
    }
}

/* Móvil (hasta 600px) */
@media screen and (max-width: 600px) {
    .footer {
        padding: 15px 0;
        font-size: 12px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .logo-onlocation {
        height: 35px;
    }
    
    .footer-copyright p {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .footer-links a {
        flex-basis: 100%;
        padding: 5px 0;
        font-size: 11px;
    }
    
    .social-icons a {
        margin: 0 8px;
        font-size: 16px;
    }
    
    .footer-contact p {
        font-size: 9px;
        line-height: 1.5;
    }
    
    .footer-nav a {
        font-size: 13px;
    }
}

/* Móvil pequeño (hasta 400px) */
@media screen and (max-width: 400px) {
    .footer-container {
        padding: 0 10px;
    }
    
    .logo-onlocation {
        height: 30px;
    }
    
    .social-icons a {
        margin: 0 6px;
        font-size: 14px;
    }
    
    .footer-contact p {
        font-size: 8px;
    }
    
    .footer-copyright p {
        font-size: 10px;
    }
}