 .swiper {
     width: 100%;
     height: 100%;
     margin: 1em 0;
 }

 .swiper-slide {
     text-align: center;
     font-size: 18px;
     background: #444;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
 }

 .swiper-slide img {
     display: block;
     width: 100%;
     height: 100%;
     object-fit: cover;
 }
.toggle-audio-btn,
 .download-link {
    margin: 1em;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
 }

 .toggle-audio-btn {
    position: relative;
    margin: 0;
    padding: 0;
 }

.toggle-audio-btn:hover,
 .download-link:hover {
    background-color: #000;
    color: #fff;
    
 }

/* Estados del botón de audio */
.toggle-audio-btn.audio-playing {
    background-color: #000;
    color: #fff;
}

.toggle-audio-btn.audio-paused {
    background-color: #fff;
    color: #000;
}

.toggle-audio-btn.audio-playing:hover {
    background-color: #333;
}

 .swiper-pagination {
    pointer-events: none;
 }

 .swiper-pagination .swiper-pagination-bullet {
    pointer-events: all;
 }

 .swiper-pagination-bullet-active {
    background: #ffffff;
 }


 
 .swiper-button-next, .swiper-button-prev {
    color: #ffffff;
    pointer-events: all;
 }