.swiper-container-2 {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.swiper-wrapper-2 {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.3s ease-in-out;
}

.swiper-wrapper-2 .swiper-slide {
    padding-left: 0;
}

.swiper-slide-2 {
    position: relative; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    padding-left: 0; 
}

.swiper-slide-2 img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.swiper-slide-3 img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: cover;
}

.swiper-slide-2 p {
    position: absolute;
    color: white; 
    font-size: 2em;
    text-align: center; 
    padding: 10px;
    bottom: 10px; 
    left: 50%;
    transform: translateX(-50%); /* Centra el texto horizontalmente */
}

.swiper-button-next-2, .swiper-button-prev-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next-2 {
        background-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMTYwIDEyOC40IDE5Mi4zIDk2IDM1MiAyNTYgMTkyLjMgNDE2IDE2MCAzODMuNiAyODcuMyAyNTZ6IiBmaWxsPSIjZmZmZmZmIiBjbGFzcz0iZmlsbC0wMDAwMDAiPjwvcGF0aD48L3N2Zz4=');
}


.swiper-button-prev-2 {
        background-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMzUyIDEyOC40IDMxOS43IDk2IDE2MCAyNTZsMTU5LjcgMTYwIDMyLjMtMzIuNEwyMjQuNyAyNTZ6IiBmaWxsPSIjZmZmZmZmIiBjbGFzcz0iZmlsbC0wMDAwMDAiPjwvcGF0aD48L3N2Zz4=');
}

.swiper-button-next-2,
.swiper-button-prev-2 {
    background-size: contain;
    background-repeat: no-repeat; 
    background-position: center;
}


.swiper-button-next-2 {
    right: 20px;
}

.swiper-button-prev-2 {
    left: 20px;
}

@media (max-width: 767px) {
    .swiper-button-next-2,
    .swiper-button-prev-2 {
        display: none;
    }
}