/* ==========================================================================
   5. Hero Section (Lolas Elizabeth - Legible & Elegante)
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-section .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 2;
}

.hero-section .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

/* =========================================
   TÍTULO DEL HERO (Lola's arriba, Elizabeth pequeño abajo)
   ========================================= */
.hero-section .hero-title {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.6vw, 3px); 
    font-size: clamp(2rem, 5vw, 3.5rem); 
    margin-bottom: 1.5rem;
    line-height: 1; 
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5); 
    max-width: 900px; 
    margin-left: auto;
    margin-right: auto;

    /* 🚨 ESTO APILA LOS TEXTOS 🚨 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Espacio entre el nombre y la ciudad */
}

/* ESTILO PARA ELIZABETH (Más pequeño) */
.hero-section .hero-title .title-city {
    display: block;
    font-size: clamp(1.15rem, 2.5vw, 2rem); /* Tamaño reducido */
    font-weight: 600; /* Menos Bold para contraste */
    letter-spacing: 6px; /* Letras más separadas (look de lujo) */
    color: rgba(255, 255, 255, 0.85);
    margin-top: 5px;
}

.hero-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400; 
    letter-spacing: 2px;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    text-transform: uppercase;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

/* =========================================
   BOTONES DEL HERO
   ========================================= */
.hero-section .hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.hero-section .hero-buttons a {
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600; 
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s ease;
}

.hero-section .btn-lolas-primary {
    background-color: var(--lolas-primary);
    color: #ffffff;
    border: 2px solid var(--lolas-primary); 
}

.hero-section .btn-lolas-primary:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px); 
}

.hero-section .btn-lolas-outline-light {
    background-color: transparent;
    color: #ffffff; 
    border: 1px solid #ffffff; 
}

.hero-section .btn-lolas-outline-light:hover {
    background-color: #ffffff;
    color: #000000; 
    transform: translateY(-2px); 
}

/* =========================================
   AJUSTES MÓVILES DEL HERO
   ========================================= */
@media (max-width: 768px) {
    .hero-section .hero-content {
        margin-top: 15vh;
        padding: 0 15px;
    }

    .hero-section .hero-title {
        letter-spacing: 1px; 
        font-size: 2rem; 
        line-height: 1.1; 
    }

    .hero-section .hero-title .title-city {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    
    .hero-section .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-section .hero-buttons a {
        width: 250px;
    }
}



/* SECCION EVENTOS */
/* ==========================================================================
   7. UPCOMING EVENTS SECTION (Lolas Luxury Style)
   ========================================================================== */

.events-section {
    background-color: #000000ee;
    padding: 100px 0;
    color: #ffffff;
}

.events-section .section-title {
 font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--lolas-light); /* Forzamos blanco sobre el fondo oscuro */
    line-height: 1.1;
}

.event-card {
    background: transparent;
    transition: transform 0.4s ease;
}

.event-card:hover {
    transform: translateY(-8px);
}

.event-image-wrapper {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}

.event-img {
    width: 100%;
    aspect-ratio: 1 / 1; 
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    transition: transform 0.6s ease;
}

.event-card:hover .event-img {
    transform: scale(1.03); 
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 10, 10, 0.85); 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.event-date .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lolas-primary); 
    font-weight: 500;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    margin-top: 2px;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
    min-height: 55px; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
}

.btn-event-finished,
.btn-event-active {
    display: block;
    width: 100%;
    padding: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-event-finished {
    background-color: #222222;
    color: #666666;
    border: 1px solid #222222;
    pointer-events: none; 
}

.btn-event-active {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid var(--lolas-primary);
}

.btn-event-active:hover {
    background-color: var(--lolas-primary);
    color: #ffffff;
}

/* =========================================
   EFECTO CARRUSEL DESLIZABLE (SWIPE)
   ========================================= */

.events-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
    padding-bottom: 20px; 
    
    /* Ocultar barra de scroll para vista limpia */
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

.events-carousel::-webkit-scrollbar {
    display: none; 
}

.event-slide {
    scroll-snap-align: center; 
    flex: 0 0 auto; /* Evita que Bootstrap aplaste las tarjetas */
}

@media (min-width: 992px) {
    .events-carousel {
        scroll-snap-type: none; /* En PC dejamos que el ratón o trackpad fluya normal */
    }
}

/* =========================================
   FLECHAS DEL CARRUSEL (Estilo Lujo)
   ========================================= */

.lolas-carousel-btn {
    position: absolute;
    top: 40%; /* Un poco más arriba para centrarse con la foto */
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 10, 0.8);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding-bottom: 5px; /* Ajuste visual del símbolo */
}

.lolas-carousel-btn:hover {
    background: var(--lolas-primary);
    border-color: var(--lolas-primary);
    transform: translateY(-50%) scale(1.1);
}

/* Posiciones de las flechas */
.prev-btn { left: -25px; }
.next-btn { right: -25px; }

/* =========================================
   AJUSTES RESPONSIVE (MÓVILES Y TABLETS)
   ========================================= */
@media (max-width: 768px) {
    /* Forzamos a que cada slide ocupe el 100% del ancho del contenedor */
    .event-slide {
        flex: 0 0 100% !important; /* Ahora solo se verá uno a la vez */
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Ajustamos el carrusel para que el "iman" encaje perfecto al 100% */
    .events-carousel {
        scroll-snap-type: x mandatory;
        gap: 0; /* Quitamos el espacio sobrante entre tarjetas en móvil */
    }

    .events-section {
        padding: 60px 0;
    }

    .events-section .section-title {
        font-size: 1.8rem;
        letter-spacing: 4px;
        margin-bottom: 2.5rem;
    }

    .event-card {
        margin-bottom: 0px; /* Quitamos margen para que no rompa el slide */
    }

    .event-title {
        min-height: auto;
        margin-bottom: 15px;
    }
}



/* ==========================================================================
   9. BOOKING / VENUE SECTION - NUEO DISEÑO PREMIUM
   ========================================================================== */

.booking-section {
    position: relative;
    min-height: 600px; /* Más alta para que luzca la imagen */
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.booking-section .booking-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8; /* Imagen un poco más vibrante */
}

.booking-section .booking-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

/* --- LA TARJETA EFECTO CRISTAL --- */
.booking-card {
    position: relative;
    z-index: 10;
    background: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 4px; /* Bordes rectos y elegantes como el resto del sitio */
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.booking-card .venue-tag {
    color: var(--lolas-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1rem;
    display: block;
    margin-bottom: 15px;
}

.booking-card .booking-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.1;
}

/* --- BLOQUE DE CONTACTO --- */
.booking-info-box {
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.booking-card .info-name {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: var(--lolas-primary);
    font-size: 1.1rem;
}

.contact-item:hover {
    color: var(--lolas-primary);
}

/* --- BOTONES AJUSTADOS --- */
.booking-section .booking-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.booking-section .btn-lolas-solid {
    background-color: var(--lolas-primary);
    color: #fff;
    padding: 16px 35px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.booking-section .btn-lolas-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 16px 35px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.booking-section .btn-lolas-solid:hover,
.booking-section .btn-lolas-outline:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .booking-section { padding: 40px 15px; }
    .booking-card { padding: 40px 20px; }
    .contact-grid { flex-direction: column; gap: 15px; align-items: center; }
    .booking-section .booking-btns { flex-direction: column; }
    .booking-section .btn-lolas-solid, 
    .booking-section .btn-lolas-outline { width: 100%; }
}



/* ==========================================================================
   10. HOURS SECTION - MINIMALIST FINE DINING STRIP (ESCALA AUMENTADA)
   ========================================================================== */

.hours-minimal-section {
    position: relative;
    padding: 85px 0; /* Aumentamos el padding para que respire más */
    background-color: #030303;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-minimal-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4; 
    filter: grayscale(100%); 
}

.hours-minimal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 5, 5, 0.85); 
    z-index: 2;
}

/* --- TEXTOS MINIMALISTAS --- */
.minimal-subtitle {
    color: var(--lolas-primary);
    font-size: 0.75rem; /* Creció un poquito */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.minimal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem; /* 🚨 Título más visible y con más presencia 🚨 */
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin: 0;
    font-weight: 400; 
}

/* Divisor Vertical Elegante */
.minimal-divider {
    width: 1px;
    height: 60px; /* Divisor un poco más alto acorde al nuevo tamaño */
    background-color: rgba(255, 255, 255, 0.15);
}

/* --- HORARIOS (Textos más legibles) --- */
.minimal-item {
    display: flex;
    flex-direction: column;
}

.minimal-day {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 0.95rem; /* Creció para leerse mejor */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 4px;
}

.minimal-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem; /* Hora más clara */
    font-weight: 300;
    letter-spacing: 1px;
}

/* Separadores entre los días en PC */
@media (min-width: 768px) {
    .minimal-item:not(:last-child) {
        position: relative;
    }
    .minimal-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -25px; 
        top: 50%;
        transform: translateY(-50%);
        height: 30px; /* Líneas separadoras más altas */
        width: 1px;
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* --- AJUSTES MÓVILES --- */
@media (max-width: 991px) {
    .hours-minimal-section {
        padding: 65px 15px; /* Ajuste proporcional en móvil */
    }
    
    .hours-minimal-header {
        margin-bottom: 15px;
    }
    
    .hours-minimal-list {
        gap: 30px !important; 
    }
    
    .minimal-item:not(:last-child)::after {
        display: none; 
    }
}





/* ==========================================================================
   11. CATERING SECTION - DISEÑO EDITORIAL / BOUTIQUE (MARCO FIJO)
   ========================================================================= */
.catering-editorial-section {
    background-color: #000000ee; /* Fondo ultra oscuro, casi negro */
    padding: 100px 0;
    overflow: hidden;
}

/* --- IMAGEN FLOTANTE CON MARCO --- */
.catering-img-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
}

.catering-img {
    width: 100%;
    aspect-ratio: 4 / 5; /* Formato retrato vertical */
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 30px 50px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
}

/* 🚨 MARCO DECORATIVO FIJO (Sin efecto hover) 🚨 */
.catering-img-frame {
    position: absolute;
    top: 25px; /* Posición fija */
    left: -20px; /* Posición fija */
    width: 100%;
    height: 100%;
    border: 2px solid var(--lolas-primary); /* Línea azul de Lola's */
    border-radius: 4px;
    z-index: 1;
    /* Eliminamos la transition porque ya no se mueve */
}

/* --- TEXTO EDITORIAL --- */
.catering-text-wrapper {
    color: #fff;
}

.cat-tag {
    color: var(--lolas-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.catering-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 2.5rem);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.catering-divider-elegant {
    width: 80px;
    height: 2px;
    background-color: rgba(255,255,255,0.2);
    margin-bottom: 40px;
}

/* Contacto */
.catering-coordinator {
    margin-bottom: 30px;
}

.catering-coordinator .info-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin: 0 0 5px 0;
    color: #fff;
}

.catering-coordinator .info-role {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.catering-contact-lines {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Iconos dentro de círculos */
.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lolas-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-line:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-line:hover .icon-circle {
    background-color: var(--lolas-primary);
    color: #fff;
}

/* --- ESTILO DE BOTONES (TOTALMENTE CUADRADOS) --- */
.catering-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-lolas-square-solid {
    background-color: var(--lolas-primary);
    color: #fff;
    padding: 16px 35px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.4s ease;
    border: 2px solid var(--lolas-primary);
    display: inline-block;
}

.btn-lolas-square-outline {
    background-color: transparent;
    color: #fff;
    padding: 16px 35px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.5);
    display: inline-block;
}

.btn-lolas-square-solid:hover {
    background-color: transparent;
    color: var(--lolas-primary);
    transform: translateY(-3px);
}

.btn-lolas-square-outline:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .catering-editorial-section { padding: 60px 0; }
    
    .catering-img-wrapper { 
        width: 85%; 
        margin: 0 auto 30px auto; 
    }
    .catering-img-frame { 
        top: 15px; 
        left: 15px; 
    }

    .catering-text-wrapper { text-align: center; margin-top: 30px; }
    .catering-divider-elegant { margin: 0 auto 40px auto; }
    .contact-line { justify-content: center; }
    .contact-line:hover { transform: none; }
    
    /* 🚨 FIX PARA LOS BOTONES EN MÓVIL 🚨 */
    .catering-btns { 
        display: flex;
        flex-direction: column; 
        align-items: center; /* Centra los botones en la pantalla */
        gap: 15px;
    }
    .btn-lolas-square-solid, 
    .btn-lolas-square-outline { 
        width: 100%; 
        max-width: 280px; /* ESTO ES LA MAGIA: Evita que se hagan gigantes */
        text-align: center; 
    }
}





/* --- SECCIÓN SLIDER MENU HERO --- */
.menu-hero-slider {
    position: relative;
    height: 600px;
    background-color: #000;
    overflow: hidden;
}

/* Forzamos a Swiper a ocupar el 100% del alto */
.menu-hero-slider .mainFoodSwiper,
.menu-hero-slider .swiper-container,
.menu-hero-slider .swiper-wrapper,
.menu-hero-slider .swiper-slide {
    width: 100%;
    height: 100% !important;
    min-height: 100%;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Degradado suavizado */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.833) 0%, 
        rgba(0, 0, 0, 0.537) 35%, 
        rgba(0, 0, 0, 0) 70%
    );
    z-index: 2;
}

/* Contenido flotante */
.menu-static-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.content-box {
    pointer-events: auto;
}

/* Tipografía y Colores */
.menu-subtitle {
    color: #4b91f7;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.menu-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    white-space: nowrap; 
}

.menu-divider {
    width: 80px;
    height: 4px;
    background-color: #4b91f7;
    margin: 30px 0;
}

.menu-description {
    color: #ffffff;
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 850px; 
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.btn-lolas-blue {
    background-color: #4b91f7;
    color: #fff;
    padding: 15px 40px;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    transition: 0.3s ease;
}

.btn-lolas-blue:hover {
    background-color: #357ae8;
    transform: translateY(-3px);
    color: #fff;
}

.menu-hero-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}
.menu-hero-slider .swiper-pagination-bullet-active {
    background: #4b91f7 !important;
    opacity: 1;
}

/* --- AJUSTES RESPONSIVE --- */

@media (max-width: 1200px) {
    .menu-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    /* Centramos el contenedor de Bootstrap */
    .menu-static-content .row {
        justify-content: center;
    }

    /* Centramos el texto y elementos internos */
    .content-box {
        text-align: center;
    }

    .menu-title {
        white-space: normal; 
        font-size: 2.4rem;
    }

    /* Centramos el divisor (margin auto) */
    .menu-divider {
        margin: 25px auto;
    }

    .menu-description {
        max-width: 100%;
        font-size: 1rem;
    }

    /* Cambiamos el degradado a uno vertical para que se lea bien el texto centrado */
    .slide-overlay {
        background: linear-gradient(to bottom, 
            rgba(0,0,0,0.5) 0%, 
            rgba(0,0,0,0.7) 100%
        );
    }
}

@media (max-width: 768px) {
    .menu-hero-slider { 
        height: 550px; 
    }
    
    .menu-title {
        font-size: 2rem;
    }

    .btn-lolas-blue {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}



/* ==========================================================================
   13. NEWSLETTER & RECENT POSTS SECTION (DISEÑO GRID VERTICAL AMPLIADO)
   ========================================================================== */

.newsletter-section {
    position: relative; 
    overflow: hidden;   
    background-color: #050505; 
    padding: 100px 0;
    font-family: var(--font-body);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8; 
}

/* Degradado: Más oscuro a la izquierda (texto), un poco más claro a la derecha */
.newsletter-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 2;
}

/* --- COLUMNA NEWSLETTER (IZQUIERDA) --- */
.newsletter-content-col { color: #fff; }

.newsletter-subtitle { 
    display: block; 
    color: var(--lolas-primary); 
    text-transform: uppercase; 
    letter-spacing: 5px; 
    font-size: 0.85rem; 
    font-weight: 600; 
    margin-bottom: 1rem; 
}

.newsletter-title { 
    font-family: var(--font-heading); 
    font-size: clamp(2rem, 4vw, 2.8rem); 
    font-weight: 700; 
    text-transform: uppercase; 
    color: var(--lolas-light); 
    line-height: 1.1; 
    letter-spacing: 1px; 
    margin-bottom: 1.5rem; 
}

.newsletter-divider-left { 
    width: 60px; 
    height: 3px; 
    background-color: var(--lolas-primary); 
    margin-bottom: 2rem; 
}

.newsletter-description { 
    font-size: 1.05rem; 
    color: rgba(255, 255, 255, 0.6); 
    line-height: 1.6; 
    margin-bottom: 2.5rem; 
    font-weight: 300; 
}

/* Formulario CF7 */
.newsletter-form-wrapper { width: 100%; max-width: 500px; }
.lolas-newsletter-flex { display: flex; gap: 10px; align-items: center; width: 100%; }

.wpcf7 form .wpcf7-response-output { 
    margin-top: 20px; 
    border-radius: 0; 
    border: 1px solid var(--lolas-primary); 
    color: var(--lolas-light); 
    font-size: 0.9rem; 
}

.lolas-news-input { 
    flex-grow: 1; 
    background-color: transparent !important; 
    border: 1px solid rgba(255, 255, 255, 0.2) !important; 
    color: var(--lolas-light) !important; 
    padding: 15px 20px !important; 
    font-family: var(--font-body); 
    font-size: 1rem; 
    outline: none; 
    transition: all 0.3s ease; 
    border-radius: 0; 
    width: 100%; 
}

.lolas-news-input:focus { 
    border-color: var(--lolas-primary) !important; 
    background-color: rgba(255, 255, 255, 0.05) !important; 
}

.lolas-news-input::placeholder { color: rgba(255, 255, 255, 0.3); }

.lolas-newsletter-flex .btn-lolas-solid { 
    background-color: var(--lolas-primary) !important; 
    color: var(--lolas-light) !important; 
    padding: 15px 35px !important; 
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 2px; 
    transition: all 0.3s ease; 
    border: none !important; 
    cursor: pointer; 
    height: 100%; 
}

.lolas-newsletter-flex .btn-lolas-solid:hover { 
    background-color: #fff !important; 
    color: #000 !important; 
}

.wpcf7-spinner { display: none !important; }

/* --- COLUMNA POSTS RECIENTES (DERECHA) --- */
.recent-posts-col {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 50px;
}

.recent-posts-heading {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    font-weight: 600;
}

/* GRID: Pone las 2 tarjetas una al lado de la otra ocupando el 100% del espacio */
.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 35px; /* 🚨 Aumentado para empujar las tarjetas hacia los lados 🚨 */
    width: 100%; 
}

/* Tarjeta Vertical */
.post-card-vertical {
    display: block;
    text-decoration: none;
    transition: all 0.4s ease;
    width: 100%; 
}

.post-card-vertical:hover .thumb-vertical {
    transform: scale(1.05); 
}

.post-card-vertical:hover .title-vertical {
    color: var(--lolas-primary); 
}

/* --- IMAGEN (ARRIBA Y GRANDE) --- */
.thumb-wrapper-vertical {
    width: 100%;
    /* 🚨 Aspect Ratio modificado a 3/2 para que la foto sea más ancha y llene el espacio 🚨 */
    aspect-ratio: 3 / 2; 
    overflow: hidden;
    border-radius: 6px; /* Borde sutilmente más elegante */
    margin-bottom: 20px; 
}

.thumb-vertical {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.6s ease;
}

.thumb-placeholder-vertical {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 2rem;
}

/* --- TEXTOS (ABAJO DE LA IMAGEN) --- */
.title-vertical {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.25rem; /* 🚨 Título más grande porque la tarjeta es más ancha 🚨 */
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
    
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-vertical {
    color: rgba(255, 255, 255, 0.5); 
    font-size: 0.75rem; 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-vertical i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    color: var(--lolas-primary);
}

.post-card-vertical:hover .read-more-vertical {
    color: #fff; 
}

.post-card-vertical:hover .read-more-vertical i {
    transform: translateX(5px); 
}

.no-posts-msg { color: rgba(255,255,255,0.5); font-style: italic; }

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .newsletter-section { padding: 80px 20px; text-align: center; }
    .newsletter-divider-left { margin: 0 auto 2rem auto; }
    .newsletter-form-wrapper { margin: 0 auto; }
    
    .recent-posts-col {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 50px;
        margin-top: 30px;
        text-align: left; 
    }
}

@media (max-width: 575px) {
    .lolas-newsletter-flex { flex-direction: column; }
    .lolas-newsletter-flex .btn-lolas-solid { width: 100%; padding: 16px !important; }
    
    /* En celular se apilan */
    .recent-posts-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}



/* ==========================================================================
   HOME: WEEKLY LINEUP (DISEÑO PREMIUM CON IMAGEN)
   ========================================================================== */

.weekly-lineup-elegant {
    background-color: #050505; 
    padding: 120px 0;
    font-family: var(--font-body, 'Poppins', sans-serif);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* --- CABECERA --- */
.lineup-header {
    margin-bottom: 80px;
}

.lineup-subtitle {
    color: var(--lolas-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.5rem; /* Tamaño original mantenido */
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.lineup-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: clamp(2.5rem, 5vw, 3rem); /* Tamaño original mantenido */
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
}

/* --- LISTA DE EVENTOS (Izquierda) --- */
.lineup-list {
    padding-right: 30px; 
}

.lineup-row {
    display: flex;
    flex-direction: column;
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.lineup-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lineup-row:hover {
    padding-left: 15px;
    border-bottom-color: var(--lolas-primary);
}

/* 🚨 TEXTO DE LOS DÍAS: Tamaño grande original sin saltos de línea 🚨 */
.lineup-day h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    color: transparent;
    -webkit-text-stroke: 1px var(--lolas-primary); 
    font-size: 2.5rem; /* Tamaño original mantenido */
    text-transform: uppercase;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    font-weight: 700;
    
    /* 🚨 ESTA ES LA MAGIA: Obliga al texto a quedarse en una sola línea 🚨 */
    white-space: nowrap; 
}

.lineup-row:hover .lineup-day h3 {
    color: var(--lolas-primary); 
    -webkit-text-stroke: 0px;
}

.lineup-details h4 {
    color: #ffffff;
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.4rem; /* Tamaño original mantenido */
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.lineup-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* --- IMAGEN (Derecha) --- */
.lineup-image-wrapper {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
    /* 🚨 Controlamos el tamaño máximo para que no se estire demasiado en pantallas grandes 🚨 */
    max-width: 480px; 
    margin: 0 auto; /* La centramos dentro de su propia columna */
}

.lineup-hero-img {
    width: 100%;
    /* 🚨 Cambiamos la proporción de 4/5 a 1/1 (cuadrado perfecto) para emparejar la altura con el texto 🚨 */
    aspect-ratio: 1 / 1; 
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.lineup-image-backdrop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background-color: transparent;
    border: 2px solid var(--lolas-primary);
    border-radius: 4px;
    z-index: 1;
    transform: translate(-10px, 10px);
}

/* --- RESPONSIVE --- */
@media (min-width: 992px) {
    .lineup-row {
        flex-direction: row;
        align-items: center; /* Esto asegura que el día y el evento estén centrados verticalmente */
    }
    .lineup-day {
        /* 🚨 AQUÍ ESTÁ LA SOLUCIÓN: Un ancho fijo de 250px para que todos los días midan lo mismo y la segunda columna se alinee perfectamente 🚨 */
        flex: 0 0 250px; 
        padding-right: 30px; 
    }
    .lineup-day h3 {
        margin-bottom: 0; /* Quitamos el margen inferior para que se centre bien con el texto de la derecha */
    }
    .lineup-details {
        flex: 1; 
    }
}

@media (max-width: 991px) {
    .lineup-list {
        padding-right: 0;
    }
    .lineup-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .weekly-lineup-elegant {
        padding: 80px 20px;
    }
    
    /* 🚨 ESTO CENTRARÁ TODO EL CONTENIDO EN MÓVILES 🚨 */
    .lineup-row {
        align-items: center; /* Centra los bloques verticalmente/horizontalmente según el flex */
        text-align: center;  /* Centra los textos internos */
        padding-left: 0 !important; /* Evita que el hover desplace el texto de centro */
    }

    .lineup-day {
        padding-right: 0; /* Quitamos el padding que tenía para escritorio */
        margin-bottom: 5px; /* Un pequeño respiro antes del nombre del evento */
    }

    .lineup-day h3 {
        font-size: 2.2rem;
        /* En móvil, si la pantalla es muy pequeña, permitimos que baje de línea si es absolutamente necesario para que no se corte */
        white-space: normal; 
    }
    
    .lineup-header {
        margin-bottom: 50px; 
    }
    
    .lineup-title {
        font-size: 2rem; 
        line-height: 1.2;
    }
}






/* ==========================================================================
   HOME: DEDICATED SPORTS BAR SECTION (TEXTO CENTRADO + 1 IMAGEN)
   ========================================================================== */

.sports-bar-dedicated {
    background-color: #0a0a0a; 
    padding: 100px 0;
    font-family: var(--font-body, 'Poppins', sans-serif);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- TEXTOS (Centrados) --- */
.sports-content-wrap {
    max-width: 850px; 
}

.sports-tagline {
    color: var(--lolas-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.sports-main-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: clamp(2.5rem, 5vw, 3rem);
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.sports-divider {
    width: 80px;
    height: 4px;
    background-color: var(--lolas-primary);
    margin-bottom: 30px;
}

.sports-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 35px;
}

/* --- ETIQUETAS DE DEPORTES --- */
.sports-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.sport-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px; 
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: default;
}

.sport-badge:hover {
    background-color: var(--lolas-primary);
    border-color: var(--lolas-primary);
    transform: translateY(-3px);
}

/* --- UNA SOLA IMAGEN (Parte Inferior) --- */
.sports-single-image {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.sports-hero-img {
    width: 100%;
    height: 400px; /* 🚨 Altura panorámica fija para escritorio 🚨 */
    object-fit: cover;
    border-radius: 12px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); 
}

/* --- RESPONSIVE --- */

/* Ajuste para Tablets (Pantallas medianas) */
@media (max-width: 991px) {
    .sports-bar-dedicated {
        padding: 80px 20px; /* Agregamos espacio a los lados para que no toque los bordes */
    }
    .sports-hero-img { 
        height: 300px; /* Altura ideal para tablets */
    }
}

/* Ajuste para Celulares (Pantallas pequeñas) */
@media (max-width: 767px) {
    .sports-bar-dedicated {
        padding: 60px 15px; /* Reducimos un poco más el padding en móviles */
    }
    .sports-tagline { font-size: 0.85rem; }
    .sports-main-title { font-size: 2.2rem; }
    .sports-description { font-size: 1rem; }
    .sport-badge { font-size: 0.85rem; padding: 8px 16px; }
    
    .sports-hero-img { 
        height: 350px; /* 🚨 Altura aumentada para que se vea mucho más grande en móviles 🚨 */ 
    } 
}