.carrossel__titulo {
    color: var(--laranja);
    background-color: var(--branco);
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    padding: 1em 0.5em 1em;
}
.swiper-slide img {
    width: 100%;
}

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

.swiper-pagination{
    position: initial;
    margin: .5em 0
}
/*CARDS*/
.card {
    background: var(--branco);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    margin: 1em;
}

.card__descrição{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--cinza-claro);
    padding: 1em;
    margin-top: 2em;
    margin-bottom: 0.5em;
    border-radius: 8px;
}
.card__botões {
    display: flex;
    justify-content: space-between;
}
.botões {
    display: flex;
}

.descrição__titulo {
    color: var(--laranja);
    font-weight: 700;
}
.descrição__titulo-livro {
    color: var(--azul);
    font-size: 18px;
    font-weight: 700;
    margin: 0.5em 0;
}
.descrição__texto {
    font-size: 14px;
}
.botões__item {
    margin: 0 0 1em 1.5em ;
}

.botões__ancora {
    background-color: var(--laranja);
    padding: 1em 2.2em;
    color: var(--branco);
    font-weight: 700;
    text-decoration: none;
    margin: 0 1em .5em 0;
}

@media screen and (min-width: 1024px) {
    .carrossel__titulo {
        font-size: 26px;
    }
    .swiper-pagination {
        margin: 2em 0 3em 0;
    }
    .swiper{
        width: 60%;
    }
    .swiper-button-prev, .swiper-button-next {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 60%;
        width: 48px;
        height: 48px;
        background: var(--azul-degrade);
        border-radius: 100%;
        color: var(--branco);
        font-size: 24px;
    }
    .card {
        width: 40%;
        margin: 2em auto;
    }
    .swiper-button-next::after, .swiper-button-prev::after {
        content: "";
    }
    
}

@media screen and (min-width: 1728px) {
    .carrossel__container {
        display: flex;
        margin: 0 20vw 3em 20vw;
        align-items: center;
    }
    .swiper-pagination {
        margin: 1em 0;
    }
    .swiper {
        width: 50%;
    }
    .descrição__titulo {
        font-size: 32px;
    }
    .descrição__texto {
        font-size: 16px;
    } 
    .card {
        width: 60%;
        margin-left: 3em;
    }
}