.depoimento {
    padding: 60px 8px 0 8px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.depoimento__titulo {
    font-size: 28px;
    text-transform: capitalize;
    text-align: center;

    color: #535353;
}

.depoimento__subtitulo {
    font-size: 22px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    color: #535353;

    max-width: 400px;

    margin-bottom: 48px;
}

.depoimento__container-slides {
    display: flex;
    gap: 37px;

    width: 890px;
    max-width: calc(100% - 16px);
    overflow: hidden;
    padding-bottom: 5px;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.depoimento__slide {
    position: relative;

    box-sizing: border-box;

    border: solid 1px #AAAAAA;
    background-color: white;

    min-width: 300px;
    width: calc(50% - 21px);
    max-width: 428.5px;

    padding: 10px;

    flex-shrink: 0;
    scroll-snap-align: start;

    display: flex;
    align-items: start;
    gap: 10px;
}

.depoimento__slide::before {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: -1;
    content: "";

    width: 100%;
    height: 100%;

    background-color: #0387BB;
}

.depoimento__slide-aspas {
    width: 40px;
}

.depoimento__slide-paragrafo {
    font-size: 18px;
}

.btn__depoimentos {
    margin-top: 10px;

    display: flex;
    gap: 10px;
}

.btn__depoimentos-ativado {
    background-color: #0387BB;
    border: none;
}

.btn__depoimentos-desativado {
    background-color: white;
    border: 1px solid rgb(161, 161, 161);
}

.btn__depoimentos button {
    border-radius: 109px;

    width: 20px;
    height: 20px;

    cursor: pointer;
}


@media screen and (max-width: 768px) {
    /* Texto */
    .depoimento__titulo {
        font-size: 24px;
        max-width: 350px;
    }

    .depoimento__subtitulo {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 662px){
    .depoimento__container-slides {
        overflow-x: scroll;
        scrollbar-width: none;
    }
}

@media (max-width: 480px) {
    /* Texto */
    .depoimento__titulo {
        font-size: 22px;
    }

    .depoimento__subtitulo {
        font-size: 18px;
    }
}