/*
* Esconder .desktop-slide quando a tela for menor que 1024px
*/

@media (max-width: 768px) {
    .desktop-slide {
        display: none;
    }

    .mobile-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
}

/*
* Esconder .mobile-slide quando a tela for maior que 1024px
*/
@media (min-width: 769px) {
    .mobile-slide {
        display: none;
    }

    .desktop-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
}

.slides-home .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slides-home {
    width: 100%;
    position: relative;
}

.swiper-pagination-w {
    text-align: center;
}

.swiper-button-next-w:after, .swiper-button-prev-w:after {
    font-size: 20px;
    font-weight: 600;
    background-color: #c59253;
    padding: 10px 10px;
    color: white;
    border-radius: 5px;
}