.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: #DCB24C;
}

.boxVantagens ul {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    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: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.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: 20px;
    line-height: 30px;
    margin-left: 20px;
    text-align: left;
    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(1, 1fr);
    }

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

    .boxVantagens ul li .boxInterno span {
        font-size: 16px;
        line-height: 24px;
    }

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

}