.depoimentos {
    background: url(/img/fundo-antecipar.png) no-repeat center center;
    background-size: cover;
    padding: 70px 10px;
}
.depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;

}
.avaliacao {
    position: relative;
    background: #FFF;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.10);
    padding: 45px 25px;
    display: grid;
    align-items: end;
    text-align: center;
    justify-items: center;
    gap: 15px;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-style: italic;
}
.aspas {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 0;
}

.depoimentos-title h6 {
    font-weight: 800;
    color: #0A2FB7;
    text-align: center;
}
.depoimentos-title h5 {
    font-size: 3.125rem;
    color: #242425;
    font-weight: 800;
    text-align: center;
    line-height: 1.2em;
}
.depoimentos-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.depoimentos-content p {
    background-color: #00155cb6;
    border-radius: 10px;
    color: #FFF;
    padding: 10px 25px;
    display: grid;
    align-items: center;
}
.guarda > p {
    color: #242425;
    text-align: center;
    font-size: 1.375rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}
.guarda > a {
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width:400px) and (max-width:996px) {

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    
    }
    .depoimentos-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .guarda > a {
        font-size: 1.1rem;
    }
}

@media only screen and (min-width:0px) and (max-width:399px) {

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    
    }
    .depoimentos-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .guarda > a {
        font-size: .9rem;
    }
    .guarda > p {
        color: #242425;
        text-align: center;
        font-size: .9rem;
    }

    .depoimentos-title h5 {
        font-size: 2.125rem;
    }
}