/* ==========================================================================
   ICON BOAT
   ========================================================================== */
.scroll-indicator{
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  transform: translateZ(9999px); /* 🔥 hack clave */
  cursor: pointer;
}

/* TEXTO */
.scroll-text{
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-weight: 500;

  background: linear-gradient(
    90deg,
    #3B85FF,
    #FBFBEE,
    #48B9FF
  );

  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: textShine 4s linear infinite;
}

/* EFECTO BRILLO */
@keyframes textShine{
  0%{
    background-position: 200%;
  }
  100%{
    background-position: -200%;
  }
}

/* FLECHA */
.scroll-arrow{
  font-size: 46px;
  line-height: 1;
  color: #FBFBEE;
  animation: scrollMove 1.8s infinite;
}

@keyframes scrollMove{
  0%{
    transform: translateY(0);
    opacity: .3;
  }
  50%{
    transform: translateY(12px);
    opacity: 1;
  }
  100%{
    transform: translateY(0);
    opacity: .3;
  }
}


.booking-section,
.catering-modern-section,
.hero-section,
.newsletter-section,
.welcome-section,
.hours-minimal-section,
.experience-slider-section {
  isolation: isolate;
}


* {
  cursor: none !important;
}

/* BOTE */

.boat-cursor{
  position: fixed;
  left: 0;
  top: 0;

  width: 55px;
  height: 55px;
  background: url("../assets/images/bote.png") center/contain no-repeat;

  pointer-events: none;

  transform: translate(-50%, -50%) translateZ(0);

  z-index: 2147483647;
  will-change: transform;
}
/* PARTICULAS DE AGUA */

.water-particle{
  position:fixed;
  width:10px;
  height:10px;
  border-radius:50%;
  pointer-events:none;

  background:radial-gradient(
    circle,
    rgba(200, 230, 255, 0.507) 0%,
    rgba(180,220,255,0.4) 40%,
    rgba(150,200,255,0.15) 65%,
    rgba(150,200,255,0) 80%
  );

  filter:blur(2.5px);

  animation:waterFade 0.5s ease-out forwards;
}

@keyframes waterFade{

  0%{
    transform:scale(0.5);
    opacity:0.9;
  }

  50%{
    transform:scale(1.4);
    opacity:0.5;
  }

  100%{
    transform:scale(2.5);
    opacity:0;
  }

}

/* SOLO DESKTOP (mostrar bote) */
@media (min-width: 1025px) {

  .boat-cursor {
    display: block;
  }

  * {
    cursor: none !important;
  }

}

/* TABLET Y MÓVIL (ocultar bote y devolver cursor normal) */
@media (max-width: 1024px) {

  .boat-cursor,
  .water-particle,
  .scroll-indicator {
    display: none !important;
  }

  * {
    cursor: auto !important;
  }

}

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

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
     border-bottom: 2px solid var(--lolas-primary); 
}

.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, HOPATCONG 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 HOPATCONG (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;
    }
}

/* =========================
   LOGO EN HERO
========================= */

.hero-logo {
    text-align: center;
    margin-bottom: 80px;
}

.hero-logo img {
    max-width: 240px;
    width: 100%;
    height: auto;
    opacity: 0.95;

    transition: all 0.3s ease;
}

/* hover suave */
.hero-logo img:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* 1. Contenedor Principal */
.sports-lolas-premium {
    background-color: #0c0c0c; 
    padding: 100px 5%;
    font-family: var(--font-body);
}

.sports-container { 
    max-width: 1400px; 
    margin: 0 auto; 
}

/* 2. Header Box */
.sports-header-box { 
    text-align: left; 
    margin-bottom: 50px; 
}

.sports-badge-lolas {
    color: var(--lolas-primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.sports-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--lolas-light);
    line-height: 1;
    margin: 0;
}

.sports-main-title span {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--lolas-primary);
}

.sports-desc-lolas {
    color: var(--lolas-light);
    opacity: 0.6;
    margin-top: 20px;
    max-width: 500px;
}

/* 3. Lógica de Scroll Horizontal */
.sports-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--lolas-primary) transparent;
}

.sports-scroll-wrapper::-webkit-scrollbar { height: 4px; }
.sports-scroll-wrapper::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.sports-scroll-wrapper::-webkit-scrollbar-thumb { background: var(--lolas-primary); border-radius: 10px; }

.sports-grid-luxe {
    display: flex;
    gap: 25px;
    padding: 15px 0;
}

/* 4. Tarjetas Individuales */
.sport-item-premium {
    flex: 0 0 360px;
    transition: transform 0.4s ease;
}

.sport-inner-card {
    position: relative;
    height: 480px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--lolas-dark);
    border: 1px solid rgba(76, 143, 255, 0.1);
}

.sport-img-overlay { width: 100%; height: 100%; position: relative; }
.sport-img-overlay img { width: 100%; height: 100%; object-fit: cover; transition: 0.7s; }

.sport-img-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 15%, transparent 100%);
}

/* 5. Metadatos (Badge + Tiempo) */
.sport-data-layer {
    position: absolute;
    inset: 0;
    padding: 25px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sport-top-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sport-cat-tag {
    background: var(--lolas-primary);
    color: var(--lolas-light);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* AJUSTE: Separación del horario respecto al badge */
.sport-time-lolas {
    margin-top: 15px; 
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.lolas-dot {
    width: 7px; height: 7px;
    background: var(--lolas-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--lolas-primary);
}

.sport-bottom-meta h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.sport-status-label {
    color: var(--lolas-accent);
    font-size: 11px;
    font-weight: 600;
    margin-top: 5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* 6. Hovers */
.sport-item-premium:hover { transform: translateY(-10px); }
.sport-item-premium:hover .sport-img-overlay img { transform: scale(1.1); }
.sport-item-premium:hover .sport-inner-card { border-color: var(--lolas-primary); }

/* 7. Botón CTA */
.sports-cta-wrap { margin-top: 50px; text-align: center; }

.btn-lolas-main {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--lolas-primary);
    color: var(--lolas-light) !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-lolas-main:hover { background-color: var(--lolas-accent); }

/* Móvil */
@media (max-width: 768px) {
    .sport-item-premium { flex: 0 0 85%; }
    .sports-lolas-premium { padding: 60px 5%; }
}

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

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

.events-section .section-title {
    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;
    }
}

/* ===================
  WELCOME SECTION
====================== */
.welcome-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background-image: url('../assets/images/bg2.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Parallax */
  background-attachment: fixed;

  display: flex;
  align-items: flex-start;
  justify-content: center;  
  padding-top: 100px;
  color: white;
  overflow: hidden;
}

/* Overlay oscuro */
.welcome-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Contenido */
.welcome-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  text-align: justify;
  padding: 50px 20px;
  animation: fadeInUp 1s ease forwards;
}

/* Título */
.welcome-content h2 {
  font-size: 4.0rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--lolas-light);
  margin-bottom: 15px;
}

/* Descripción */
.welcome-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--lolas-light);
  text-align: center;
}

/* Contenedor del botón */
.welcome-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

/* Botón */
.welcome-content .btn {
  display: inline-block;
  padding: 14px 30px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

/* Botón principal */
.welcome-content .btn.primary {
  background-color: var(--lolas-primary);
}

/* Hover */
.welcome-content .btn.primary:hover {
  background-color: #0a4a7a;
  transform: translateY(-3px);
}

/* Animación */
@keyframes fadeInUp {
  0% { 
    opacity: 0; 
    transform: translateY(25px); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Responsive */
@media (max-width: 768px) {

  .welcome-section {
    padding: 80px 20px 60px 20px;
    min-height: auto; /* 🔥 evita espacios raros */
    background-attachment: scroll;
  }

  .welcome-content {
    padding: 20px 10px;
    max-width: 100%;
    text-align: center; /* 🔥 mejor en móvil */
  }

  .welcome-content h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .welcome-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center; /* 🔥 más limpio en móvil */
  }

  .welcome-actions {
    margin-top: 20px;
  }

  .welcome-content .btn {
    width: 100%; /* 🔥 botón full width */
    text-align: center;
    padding: 12px;
  }

}

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

.booking-section {
    position: relative;
    min-height: 650PX;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

/* fondo */
.booking-section .booking-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center; /* 🔥 foco a la derecha */
}

/* overlay balanceado */
.booking-section .booking-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0,0,0,0.6) 40%,
        rgba(0,0,0,0.2) 100%
    );
}

/* mover contenido a la izquierda */
.booking-section .row {
    justify-content: flex-start !important;
}

/* ===============================
   CONTENIDO
================================ */
.booking-card {
    position: relative;
    z-index: 10;
    max-width: 650px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: left;
    margin-left: 20px; /* 🔥 empuja a la izquierda */
}

/* línea decorativa */
.booking-card::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 10px;
    width: 3px;
    height: 120px;
    background: var(--lolas-primary);
}

.booking-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: var(--lolas-primary);
    opacity: 0.8;
}

/* etiqueta */
.venue-tag {
    color: var(--lolas-primary);
    font-size: 0.75rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
    display: block;
}

/* título */
.booking-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    max-width: 600px;
}

/* ===============================
   INFO
================================ */
.booking-info-box {
    margin: 30px 0 40px;
}

.info-name {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 300;
}

.contact-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

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

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

.contact-item:hover {
    color: #fff;
}

/* ===============================
   BOTONES
================================ */
.booking-btns {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* primario */
.btn-lolas-solid {
    background: var(--lolas-primary);
    color: #fff;
    padding: 15px 30px;
    font-size: 0.90rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-lolas-solid:hover {
    background: #fff;
    color: #000;
}

/* secundario */
.booking-section .btn-lolas-outline {
    border: 1px solid #fff !important;
    color: #fff !important;
    background: transparent !important;
    padding: 15px 30px;
    font-size: 0.90rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* hover outline */
.booking-section .btn-lolas-outline:hover {
    border: 1px solid #fff !important;
    color: #000 !important;
    background: #fff !important;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

    .booking-section {
        padding: 80px 20px;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* overlay vertical para mobile 🔥 */
    .booking-section .booking-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.9) 0%,
            rgba(0,0,0,0.6) 50%,
            rgba(0,0,0,0.9) 100%
        );
    }

    .booking-section .row {
        justify-content: center !important;
    }

    .booking-card {
        text-align: center;
        margin-left: 0;
        padding: 20px;
        max-width: 100%;
    }

    /* quitamos línea decorativa */
    .booking-card::before {
        display: none;
    }

    /* título */
    .booking-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    /* info */
    .info-name {
        font-size: 1.1rem;
    }

    .contact-grid {
        justify-content: center;
        gap: 12px;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    /* botones */
    .booking-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-lolas-solid,
    .btn-lolas-outline {
        width: 100%;
        text-align: center;
    }
}


/* ==========================================================================
   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: 2px solid var(--lolas-primary); 
}

.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-accent);
    font-size: 0.75rem; /* Creció un poquito */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.minimal-title {
    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 {
    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; 
    }
}

/* =========================
   CATERING MODERN REDESIGN
========================= */

.catering-modern-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 80px;
    overflow: hidden;
}

/* imagen fondo */
.catering-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* overlay con foco a la derecha 🔥 */
.catering-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0,0,0,0.6) 40%,
        rgba(0,0,0,0.2) 100%
    );
}

/* ===============================
   CARD
================================ */
.catering-card {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 600px;

    padding: 50px 40px; /* 🔥 equilibrado */
    text-align: right;
}

/* ❌ eliminamos línea vieja */
.catering-card::before {
    display: none;
}

.cat-tag {
    display: block;
    color: var(--lolas-primary);
    font-size: 0.75rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* ===============================
   TÍTULO + LÍNEA 🔥
================================ */
.catering-title {
    position: relative;
    padding-right: 20px; /* 🔥 más pequeño */
    margin-right: 0;     /* 🔥 evita que se desplace más */
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--lolas-light);
}

/* 🔥 línea ahora a la derecha */
.catering-title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 4px;
    height: 90%;
    background: var(--lolas-primary);
}

/* subtítulo */
.info-role {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 300;
}

/* ===============================
   CONTACTOS (UNA SOLA LÍNEA 🔥)
================================ */
.catering-contact-lines {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: nowrap;
    margin: 20px 0;
}

.catering-contact-lines .contact-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.catering-contact-lines .contact-item i {
    color: var(--lolas-primary);
}

.catering-contact-lines .contact-item:hover {
    color: #fff;
}

/* ===============================
   BOTONES
================================ */
.catering-btns {
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.btn-primary {
    background: var(--lolas-primary);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: white;
    color: black;
}

.btn-outline {
    border: 1px solid white;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: white;
    color: black;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

    .catering-modern-section {
        height: auto; /* 🔥 clave */
        min-height: 100vh;
        padding: 80px 20px;
        justify-content: center;
        align-items: center;
    }

    /* overlay más uniforme en mobile */
    .catering-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.85) 0%,
            rgba(0,0,0,0.6) 50%,
            rgba(0,0,0,0.85) 100%
        );
    }

    .catering-card {
        position: relative;
        right: auto;
        top: auto;
        transform: none;

        margin: 0 auto;
        padding: 30px 20px;

        text-align: center;
        max-width: 100%;
    }

    /* título limpio */
    .catering-title {
        padding: 0;
        margin-bottom: 20px;
    }

    /* quitamos línea lateral */
    .catering-title::after {
        display: none;
    }

    /* subtítulo */
    .info-role {
        font-size: 1rem;
    }

    /* contactos */
    .catering-contact-lines {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .catering-contact-lines .contact-item {
        font-size: 0.85rem;
    }

    /* botones */
    .catering-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* ===============================
   EXPERIENCE SLIDER — FINAL PRO
================================ */

.experience-slider-section {
  background: #000000;
  padding-top: 60px;
}

/* TOP TEXT */
.experience-top {
  text-align: center;
  padding: 30px 20px;
}

.experience-title {
  color: #3B85FF;
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0;
}

.experience-subtitle {
  color: #FBFBEE;
  font-size: 1.1rem;
  margin-top: 6px;
}

/* SLIDER CONTAINER */
.experience-slider-custom {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

/* SLIDES */
.experience-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;

  opacity: 0;
  visibility: hidden;

  transform: scale(1.05);
  transition: opacity 1s ease, transform 6s ease;
}

/* ACTIVE SLIDE */
.experience-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transform: scale(1);
}

/* OVERLAY (MEJORADO) */
.experience-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.1));
  z-index: 1;
}

/* CONTENT */
.experience-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;

  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

/* TITLE */
.experience-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0,0,0,0.9);
}

/* DESCRIPTION */
.experience-content p {
  margin-top: 10px;
  color: #f1f1f1;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* BUTTON */
.experience-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 25px;
  background: #FBFBEE;
  color: #3B85FF;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.experience-btn:hover {
  background: #FF6105;
  color: #fff;
  transform: translateY(-2px);
}


/* ==========================================================================
   12. MENU + 6 IMAGES GRID SECTION (TAMAÑO IDEAL - OPTIMIZADO)
   ========================================================================== */

.menu-grid-section {
    background-color: #000000;
    overflow: hidden;
}

/* --- LADO IZQUIERDO (TEXTO CENTRADO) --- */
.menu-text-side {
    padding: 100px 5%; 
    background-color: var(--lolas-dark);
    display: flex;
    align-items: center;
    justify-content: center; 
    text-align: center;      
}

.menu-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* 🚨 Aumentamos bastante el ancho para que el texto no se vea apretado */
    max-width: 750px; 
}

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

.menu-grid-section .menu-title {
    font-size: 2.5rem; 
    font-weight: 600;
    text-transform: uppercase;
    color: var(--lolas-light);
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.menu-grid-section .menu-divider {
    width: 60px;
    height: 3px;
    background-color: var(--lolas-primary);
    margin: 0 auto 2rem auto; 
}

.menu-grid-section .menu-description {
    font-size: 1.15rem; 
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    /* Aseguramos que el párrafo use todo el espacio disponible nuevo */
    max-width: 100%;
    margin: 0 auto 2.5rem auto; 
    font-weight: 300;
}

.menu-grid-section .btn-lolas-solid {
    display: inline-block;
    background-color: var(--lolas-primary);
    color: var(--lolas-light);
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
}

.menu-grid-section .btn-lolas-solid:hover {
    background-color: var(--lolas-light);
    color: var(--lolas-dark);
    transform: translateY(-3px);
}

/* --- LADO DERECHO (6 FOTOS MÁS GRANDES) --- */
.menu-images-side {
    padding: 100px 5% 100px 0; 
    background-color: var(--lolas-dark);
}

.food-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; 
    max-width: 900px; 
    width: 100%;
    margin: 0 auto 0 0; 
}

.food-img-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.food-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.food-img-wrapper:hover .food-grid-img {
    transform: scale(1.1);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .menu-text-side {
        padding: 80px 20px 40px 20px;
    }
    .menu-images-side {
        padding: 40px 20px 80px 20px;
        justify-content: center !important; 
    }
    
    .food-gallery-grid {
        max-width: 600px; 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
        margin: 0 auto; 
    }
}

/* ===============================
   NEWSLETTER — MODERN CARD STYLE
================================ */

.newsletter-section {
    position: relative;
    padding: 120px 0;
    background: #000000;
    overflow: hidden;
}

/* Fondo más suave */
.newsletter-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: blur(2px);
    z-index: 1;
}

/* overlay más elegante */
.newsletter-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left, rgba(0,0,0,0.8), #0b0f14 70%);
    z-index: 2;
}

/* CONTENEDOR PRINCIPAL */
.newsletter-section .container {
    position: relative;
    z-index: 3;
}

/* ===============================
   CARD NEWSLETTER (IZQUIERDA)
================================ */
.newsletter-content-col {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 2px solid #3a7bd574; /* aquí el borde azul */
}

/* textos */
.newsletter-subtitle {
    color: var(--lolas-primary);
    font-size: 0.8rem;
    letter-spacing: 4px;
}

.newsletter-title {
    font-size: 2.5rem;
    margin: 15px 0;
    color: white;
}

.newsletter-divider-left {
    width: 50px;
    height: 2px;
    background: var(--lolas-primary);
    margin: 20px 0;
}

.newsletter-description {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
}

/* input moderno */
.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-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);
}

/* botón moderno */
.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%;
    border-radius: 0;
}

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

.lolas-newsletter-flex {
    display: flex;
    flex-direction: column; /* uno debajo del otro */
    gap: 15px; /* 🔥 separación */
}

/* ===============================
   POSTS (DERECHA)
================================ */
.recent-posts-col {
    border: none;
    padding-left: 0;
}

.recent-posts-heading {
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: #fff;
}

/* grid */
.recent-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* CARD horizontal */
.post-card-vertical {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card-vertical:hover {
    transform: translateY(-5px);
    border-color: var(--lolas-primary);
}

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

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

/* Quitar subrayado de títulos */
.title-vertical {
    text-decoration: none !important;
}

/* Quitar subrayado de links dentro de los posts */
.post-card-vertical a {
    text-decoration: none !important;
    color: inherit;
}

/* También por si el enlace está envolviendo todo */
.post-card-vertical {
    text-decoration: none !important;
}

/* Hover limpio */
.post-card-vertical:hover .title-vertical {
    text-decoration: none;
}

/* imagen lado izquierdo */
.thumb-wrapper-vertical {
    width: 140px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 0;
    margin: 0;
}

.thumb-vertical {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* contenido */
.content-vertical {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-vertical {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #fff;
}

.read-more-vertical {
    font-size: 0.7rem;
     color: rgba(255, 255, 255, 0.6);
}

/* ===============================
   RESPONSIVE
================================ */
@media (min-width: 769px) and (max-width: 991px) {

  .newsletter-section {
    padding: 100px 40px;
    border: none;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .newsletter-content-col {
    padding: 35px;
  }

  .post-card-vertical {
    flex-direction: row; /* 🔥 vuelve horizontal */
  }

  .thumb-wrapper-vertical {
    width: 120px;
    height: 100px;
  }

}

/* ==========================================================================
   24. HOME: SPORTS BAR & EVENTS SECTION (REDISEÑO PRO)
   ========================================================================== */

.sports-bar-section {
    background-color: #000000;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- TEXTOS LADO IZQUIERDO --- */
.sports-subtitle {
    display: block;
    color: var(--lolas-primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sports-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--lolas-light);
    line-height: 1.1;
}

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

/* --- IMAGEN --- */
.sports-img-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sports-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.sports-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.sports-img-wrapper:hover .sports-img {
    transform: scale(1.05);
}

/* =========================
   BOTÓN CENTRADO + PREMIUM
========================= */

.sports-bar-section .btn-lolas-solid {
    display: block;
    margin: 25px auto 0 auto;
    text-align: center;

    background: transparent; /* importante */
    border: 2px solid #3a7bd5; /* aquí el borde azul */
    color: white;

    padding: 14px 40px;


    font-size: 0.8rem;
    letter-spacing: 2px;

    text-decoration: none; /* 🔥 quita la línea */
}

/* hover como tú quieres */
.sports-bar-section .btn-lolas-solid:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 150, 255, 0.4);

    background: #3a7bd5;
    color: white;
}

/* ==========================================================================
   CAJA DERECHA - REDISEÑO PREMIUM
   ========================================================================== */

.weekly-events-box {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;

    height: 500px; /* 🔥 clave */
    overflow-y: auto; /* 🔥 scroll vertical */
}

/* Glow */
.weekly-events-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0, 150, 255, 0.15), transparent 70%);
    pointer-events: none;
}

/* Línea timeline */
.weekly-events-box::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 100px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--lolas-primary), transparent);
}

/* Título */
.events-box-title {
    color: var(--lolas-light);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: left;
}

/* ==========================================================================
   EVENTOS (NUEVO ESTILO)
   ========================================================================== */

.event-item {
    position: relative;
    padding: 20px 20px 20px 60px;
    margin-bottom: 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* circulito */
.event-item::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 28px;
    width: 10px;
    height: 10px;
    background: var(--lolas-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--lolas-primary);
}

/* hover */
.event-item:hover {
    transform: translateX(8px) scale(1.01);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Día */
.event-day {
    color: var(--lolas-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* Título */
.event-info h4 {
    color: var(--lolas-light);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

/* Descripción */
.event-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 300;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {
    .sports-bar-section {
        text-align: center;
    }

    .sports-divider {
        margin: 0 auto 2rem auto;
    }

    .weekly-events-box {
        padding: 40px 20px;
    }

    .events-box-title {
        text-align: center;
    }

    .weekly-events-box::after {
        display: none;
    }

    .event-item {
        padding: 20px;
    }

    .event-item::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .sports-bar-section {
        padding: 60px 20px;
    }
}
/* =========================
   CAROUSEL IMAGEN PRO
========================= */

.sports-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.sports-carousel .sports-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* imagen visible */
.sports-carousel .sports-img.active {
    opacity: 1;
    position: relative;
}

/* tamaño más impactante */
.sports-img-wrapper {
    height: 350px;
}

@media (min-width: 992px) {

    .sports-img-wrapper {
        margin-top: 40px;
        transform: translateX(20px);
    }

}

/* ==================
  REVIEW SECTION
=================== */
/* background section */
.review-section {
  background: #000000;
  padding: 120px 5% 25px 5%;
  display: flex;
  justify-content: center;
}

/* Content center */
.review-content {
  max-width: 1400px;
  width: 100%;
}

/* Card style */
.review-content .ti-review-item,
.review-content .ti-slide,
.review-content .ti-review-container {
  
  padding: 30px !important;
  color: #ffffff !important; /*card text color*/
  border: none !important;
  box-shadow: none !important;
}

.review-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #3B85FF;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-align: center;
}



.review-section .btn{
  color: white;
  background-color: #3B85FF;
}

/* User name */
.review-content .ti-name {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff !important;
}

/* Stars */
.review-content .ti-stars,
.review-content .ti-rating-stars {
  color: #d7b97c !important;
}

/* Date */
.review-content .ti-date {
  color: #777777 !important;
  font-size: 14px;
}

/* Review text */
.review-content .ti-text {
  margin-top: 12px;
  line-height: 1.6;
  font-size: 15px;
}

/* Read more text */
.review-content .ti-read-more {
  color: #d7b97c !important;
  text-decoration: none !important;
  font-weight: 500;
}

/* Slider arrows */
.review-content .ti-arrow {
  color: #d7b97c !important;
  opacity: 0.6;
  transition: 0.2s;
}

.review-content .ti-arrow:hover {
  opacity: 1;
}

/* Space between cards */
.review-content .ti-slide {
  margin: 0 20px !important;
}

/* Responsive */
@media (max-width: 768px) {
  .review-section { padding: 60px 20px; }
  .review-content .ti-review-item { padding: 20px !important; }
}
