.boxDescontoAlunos {
    float: left;
    width: 100%;
    background: linear-gradient(180deg, rgba(30,42,59,1) 100%, rgba(38,44,51,1) 100%);
    padding: 70px 0;
}

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

.boxDescontoAlunos h2 strong {
    color: #F09C00;
}

.boxDescontoAlunos .textoBg {
    float: left;
    width: 100%;
    border-radius: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 50px;
}

.boxDescontoAlunos .textoBg p {
    color: #fff;
    margin: 0;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
}

.boxDescontoAlunos .textoBg p strong {
    color: #F09C00;
}

.boxDescontoAlunos .boxBaixo {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 80px;
}

.boxDescontoAlunos .boxBaixo .itemAluno {
    background-image: linear-gradient(to bottom right, #475568, #4C4E4C);
    padding: 50px 20px;
    border-radius: 8px;
}

.boxDescontoAlunos .boxBaixo .itemAluno h3 {
    float: left;
    width: 100%;
    text-align: center;
    color: #fff;
    margin: 0 0 40px 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
}

.boxDescontoAlunos .boxBaixo .itemAluno ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
}

.boxDescontoAlunos .boxBaixo .itemAluno ul li {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 0;
}

.boxDescontoAlunos .boxBaixo .itemAluno ul li .titulo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 15px;
}

.boxDescontoAlunos .boxBaixo .itemAluno ul li .titulo span {
    color: #fff;
    margin-left: 5px;
    font-weight: 300;
}

.boxDescontoAlunos .boxBaixo .itemAluno ul li .desconto {
    color: #F09C00;
    font-weight: 600;
}

.boxDescontoAlunos .boxBaixo .itemAluno .aviso {
    float: left;
    width: 100%;
    padding: 12px 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 8px;
    margin: 30px 0 0 0;
    font-size: 13px;
}

.boxDescontoAlunos .boxBaixo .itemAluno .aviso + .aviso {
    margin-top: 8px;
}

.boxDescontoAlunos .boxLinkWhats {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.boxDescontoAlunos .boxLinkWhats a {
    display: flex;
    align-items: center;
    background: #C98400;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
}

.boxDescontoAlunos .boxLinkWhats a span {
    color: #fff;
    margin-right: 10px;
    font-weight: 600;
}

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

    .boxDescontoAlunos .textoBg {
        margin-bottom: 30px;
    }

    .boxDescontoAlunos .boxBaixo {
        padding: 0;
    }

}

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

    .boxDescontoAlunos {
        padding: 0 0 50px 0;
    }

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

    .boxDescontoAlunos .textoBg {
        padding: 10px;
    }

    .boxDescontoAlunos .textoBg p {
        font-size: 18px;
        line-height: 28px;
    }

    .boxDescontoAlunos .boxBaixo {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .boxDescontoAlunos .boxBaixo .itemAluno {
        padding: 25px 15px;
    }

    .boxDescontoAlunos .boxBaixo .itemAluno h3 {
        margin: 0 0 30px 0;
        font-size: 20px;
        line-height: 20px;
    }

    .boxDescontoAlunos .boxLinkWhats {
        margin-top: 30px;
        flex-direction: column;
    }

    .boxDescontoAlunos .boxLinkWhats p {
        color: #fff;
        text-align: center;
        margin: 0 0 20px 0;
        font-weight: 600;
    }

    .boxDescontoAlunos .boxLinkWhats a {
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }

}