@media (max-width: 575.98px) {
    .button button {
        padding: 1.1rem 1.5rem;
        font-size: clamp(1rem, 1.35vw, 1.62rem);
    }

    #depoimentos-section {
        padding-top: 11.12rem;
        max-width: 90%;
    }
    
    .cards-depoimentos {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    }

    .cardd {
        width: 75%;
        margin: 0 auto;
    }

    .text-cardd p {
        font-size: clamp(0.9rem, 1.04vw, 1.25rem);
    }
}



@media (min-width: 576px) and (max-width: 767.98px) {
    .cards-depoimentos {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        width: max-content;
        margin: 0 auto;
        justify-content: center;
    }
}



@media (min-width: 768px) and (max-width: 991.98px) {
    .cards-depoimentos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: max-content;
        margin: 0 auto;
        justify-content: center;
    }

    .cardd {
        width: 16rem;
    }
}



@media (min-width: 992px) and (max-width: 1199.98px) {
    .cards-depoimentos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: max-content;
        margin: 0 auto;
        justify-content: center;
    }
}



@media (min-width: 1200px) and (max-width: 1399.98px) {
    .cards-depoimentos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: max-content;
        margin: 0 auto;
        justify-content: center;
    }
}



@media (min-width: 1400px) and (max-width: 1700px) {
    .cards-depoimentos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: max-content;
        margin: 0 auto;
        justify-content: center;
    }
}