.boxVantagens {
    float: left;
    width: 100%;
    padding: 0 0 70px 0;
}

.boxVantagens h2 {
    color: #292929;
    margin: 0 0 12px 0;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    line-height: 27px;
    float: left;
    width: 100%;
}

.boxVantagens span.subtitulo {
    float: left;
    width: 100%;
    color: #292929;
    margin: 0 0 50px 0;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    line-height: 36px;
}

.boxVantagens .listaDeVantagens {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.boxVantagens .listaDeVantagens li {
    list-style: none;
    background: linear-gradient(180deg, rgba(255,216,215,1) 0%, rgba(255,235,236,1) 100%);
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.boxVantagens .listaDeVantagens li span {
    float: left;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0;
}

.boxVantagens .listaDeVantagens li p {
    float: left;
    width: 100%;
    margin: 0;
}

@media only screen and (max-width: 1000px) {

    .boxVantagens .listaDeVantagens {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}

@media only screen and (max-width: 768px) {

    .boxVantagens {
        padding: 0 0 50px 0;
    }

    .boxVantagens span.subtitulo {
        margin: 0 0 25px 0;
        font-size: 22px;
        line-height: 32px;
    }

    .boxVantagens .listaDeVantagens {
        grid-template-columns: repeat(1, 1fr);
    }

}