/* Estilos para el slider en frontend */
.acumar-swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    z-index: 1;
}

.acumar-swiper-container .swiper-slide {
    text-align: center;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.acumar-swiper-container .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.acumar-swiper-container .swiper-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    text-align: center;
}

/* Navegación y paginación */
.acumar-swiper-container .swiper-button-next,
.acumar-swiper-container .swiper-button-prev {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.acumar-swiper-container .swiper-button-next:after,
.acumar-swiper-container .swiper-button-prev:after {
    font-size: 16px;
}

.acumar-swiper-container .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.7;
}

.acumar-swiper-container .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #007aff;
}

/* Estilos responsive */
@media (max-width: 767px) {

    .acumar-swiper-container .swiper-button-next,
    .acumar-swiper-container .swiper-button-prev {
        padding: 15px;
        width: 15px;
        height: 15px;
    }

    .acumar-swiper-container .swiper-button-next:after,
    .acumar-swiper-container .swiper-button-prev:after {
        font-size: 14px;
    }
}