/* ========== AJUSTE NO CONTAINER DO CARROSSEL ========== */
.carrossel__container {
    position: relative;
    overflow: hidden;
    padding: 2em 0;
}

/* FADE BRANCO NAS LATERAIS */
.carrossel__container::before,
.carrossel__container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.carrossel__container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.carrossel__container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* AJUSTE NO SWIPER GERAL */
.swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

/* DEMAIS ESTILOS ORIGINAIS MANTIDOS ABAIXO */

.swiper-slide img {
    width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
    display: none;
}

.swiper-pagination {
    position: initial;
    margin: .0em 0;
}

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

.card__descrição {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5em;
}

.card__botões {
    display: flex;
    justify-content: space-between;
}

.botões {
    display: flex;
}

.card {
    background: var(--branco);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    margin: 0em;
    padding: 0em;
}

.botões__item {
    margin: 0 0.5em;
}

/* ========== MOBILE (ATÉ 1023px) ========== */
@media screen and (max-width: 1023px) {
    .swiper {
        width: 90%;
        margin: 0 auto;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: flex;
        position: static;
        width: 30px;
        height: 30px;
        background-color: #000;
        color: #fff;
        border-radius: 50%;
        margin: 0 10px;
        justify-content: center;
        align-items: center;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        content: "";
    }

    .swiper-button-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1em;
    }
}

/* ========== DESKTOP (A PARTIR DE 1024px) ========== */
@media screen and (min-width: 1024px) {
    .carrossel__titulo {
        font-size: 26px;
    }

    .swiper {
        width: 80%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .swiper-pagination {
        margin: 0em 0 0em 0;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: flex;
        justify-content: center;
        align-items: center;
        top: 60%;
        background-color: #000;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        color: white;
        position: absolute;
        z-index: 10;
    }

    .swiper-button-prev {
        left: -30px;
    }

    .swiper-button-next {
        right: -30px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        content: "";
    }

    .card {
        width: 100%;
        margin: 0em auto;
    }
}

/* ========== ULTRA DESKTOP (A PARTIR DE 1728px) ========== */
@media screen and (min-width: 1728px) {
    .carrossel__container {
        margin: 0 auto 1em auto;
    }

    .swiper {
        width: 80%;
        max-width: 1200px;
    }

    .swiper-pagination {
        margin: 0em 0;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: flex;
        justify-content: center;
        align-items: center;
        top: 60%;
        background-color: #000;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        color: white;
        position: absolute;
        z-index: 10;
    }

    .swiper-button-prev {
        left: -30px;
    }

    .swiper-button-next {
        right: -30px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        content: "";
    }

    .card {
        width: 100%;
        margin-left: 0em;
    }
}

       