/* Personalización de la paginación */
.swiper-pagination {
    position: relative;
    margin-top: 15px;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
    border-radius: 50%;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background-color: #000;
}
/* Estilo para los botones de navegación deshabilitados */
.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.swiper-button-next,
.swiper-button-prev {
    color: #000;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}
