/* BANNERS SECTION - SISTEMA RESPONSIVE COMPLETO */
.banners-section {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-bordes);
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* 📱 PRIMERO MÓVIL (Mobile First) */
.banners-carousel {
    position: relative;
    height: 210px; /* ⭐ ALTURA PARA MÓVILES - Compacto pero visible */
    overflow: hidden;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
}

/* 🖥️ TABLET - 768px en adelante */
@media (min-width: 768px) {
    .banners-carousel {
        height: 450px; /* ⭐ ALTURA PARA TABLET - Más impacto */
    }
}

/* 🖥️ DESKTOP - 1024px en adelante */
@media (min-width: 1024px) {
    .banners-carousel {
        height: 550px; /* ⭐ ALTURA PARA DESKTOP MEDIANO */
    }
}

/* 🖥️ DESKTOP GRANDE - 1200px en adelante */
@media (min-width: 1200px) {
    .banners-carousel {
        height: 650px; /* ⭐ ALTURA PARA DESKTOP GRANDE - Impactante */
    }
}

/* 🖥️ DESKTOP EXTRA GRANDE - 1600px en adelante */
@media (min-width: 1600px) {
    .banners-carousel {
        height: 700px; /* ⭐ ALTURA MÁXIMA - Pantallas 4K/UltraWide */
    }
}

/* ESTRUCTURA COMÚN PARA TODOS LOS TAMAÑOS */
.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 📱 CONTROLES PARA MÓVILES (más pequeños) */
.banner-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
}

.banner-prev, .banner-next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

/* 🖥️ CONTROLES PARA DESKTOP (más grandes) */
@media (min-width: 768px) {
    .banner-controls {
        padding: 0 25px;
    }
    
    .banner-prev, .banner-next {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (min-width: 1200px) {
    .banner-controls {
        padding: 0 35px;
    }
    
    .banner-prev, .banner-next {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

.banner-prev:hover, .banner-next:hover {
    background: var(--color-primario);
    color: var(--color-fondo);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(229, 160, 13, 0.4);
}

/* 📱 INDICADORES PARA MÓVILES */
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 🖥️ INDICADORES PARA DESKTOP (más grandes) */
@media (min-width: 768px) {
    .banner-dots {
        bottom: 25px;
        gap: 10px;
    }
    
    .banner-dot {
        width: 12px;
        height: 12px;
    }
}

@media (min-width: 1024px) {
    .banner-dots {
        bottom: 30px;
        gap: 12px;
    }
    
    .banner-dot {
        width: 14px;
        height: 14px;
    }
}

.banner-dot.active {
    background: var(--color-primario);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(229, 160, 13, 0.5);
}

.banner-dot:hover {
    background: var(--color-primario);
    transform: scale(1.1);
}

/* 📐 PROPORCIONES RECOMENDADAS PARA IMÁGENES */
/* 
  Para móviles: 800x300px (relación 2.66:1)
  Para tablet: 1200x450px (relación 2.66:1)  
  Para desktop: 1920x650px (relación 2.95:1)
  Para 4K: 2560x700px (relación 3.65:1)
*/

/* EFECTO DEGRADADO EN LA PARTE INFERIOR */
.banners-carousel::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
    z-index: 2;
    pointer-events: none;
}

@media (min-width: 768px) {
    .banners-carousel::before {
        height: 120px; /* ⬆️ Degradado más alto en pantallas grandes */
    }
}

/* MODO PAUSA AL INTERACTUAR */
.banners-carousel.paused .banner-slide {
    transition-duration: 0.3s; /* ⬇️ Transición más rápida al interactuar */
}