.boxVantagens {
    float: left;
    width: 100%;
    background-color: #0f1a2a;
    padding: 0 0 50px 0;
}

.boxVantagens h2 {
    float: left;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin: 0 0 45px 0;
    line-height: 36px;
    font-size: 26px;
}

.boxVantagens h2 strong {
    color: #F09C00;
}

.boxVantagens ul {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin: 0;
    padding: 0;
}

.boxVantagens ul li {
    list-style: none;
}

.boxVantagens ul li .boxInterno {
    float: left;
    width: 100%;
    background: linear-gradient(180deg, #1E2A3B 0%, rgba(30, 42, 59, 0) 100%);
    border-radius: 8px;
    padding: 45px 20px;
}

.boxVantagens ul li .boxInterno span {
    background: linear-gradient(180deg, #C98300 45.31%, #A36B00 76.04%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 24px;
    text-align: center;
    float: left;
    width: 100%;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {

    .boxVantagens {
        padding: 0 0 30px 0;
    }

    .boxVantagens h2 {
        font-size: 22px;
        line-height: 32px;
        margin: 0 0 35px 0;
    }

    .boxVantagens h2 br {
        display: none;
    }

    .boxVantagens ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .boxVantagens ul li .boxInterno {
        padding: 15px 8px;
    }

    .boxVantagens ul li .boxInterno span {
        font-size: 20px;
    }

    .boxVantagens ul li .boxInterno span br {
        display: none;
    }

}

@media only screen and (max-width: 450px) {

    .boxVantagens ul {
        grid-template-columns: repeat(1, 1fr);
    }

}