/* ==============================> BANNERS WEB */

/* CONTENEDOR PRINCIPAL */

.banners-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.banners-escritorio,
.banners-movil {
    width: 100%;
}

/* SWIPER */
.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    width: 100%;
}

/* ENLACES E IMÁGENES */

.banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.banner-imagen {
    width: 100%;
    height: auto;
    display: block;
}

/* BOTONES DE NAVEGACIÓN */

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.7) !important;
}

/* PAGINACIÓN */

.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #ffffff !important;
}

/* VISIBILIDAD RESPONSIVE */

.ocultar-movil {
    display: block;
}

.ocultar-escritorio {
    display: none;
}

/* RESPONSIVE */

/* MÓVIL */
@media (max-width: 768px) {

    /* Invertir visibilidad */
    .ocultar-movil {
        display: none;
    }

    .ocultar-escritorio {
        display: block;
    }

    /* Ajustar botones de navegación para móvil */
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px !important;
    }
}

/* TABLET */

@media (min-width: 769px) and (max-width: 1024px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px !important;
    }
}

/* ANIMACIONES */

.swiper-slide {
    transition: opacity 0.3s ease;
}

.banner-link:hover .banner-imagen {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}