
section.beneficios{
    padding: 60px 0;
}

.beneficios .interface > h2{
    text-align: center;
    margin: 40px 0;
    font-size: 28px;
}

.beneficios h2 span{
    color: #061AAD;
}

.ajuste-beneficios{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.beneficios-box{
    width: 300px;
    height: 400px;
    background-color: #fff;
    box-shadow: 2px 2px 7px 0px #00000043;
    font-size: 14px;
    padding: 40px 20px;
    text-align: center;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.beneficios-box .img-beneficios{
    width: 100px;
    text-align: center;
}

.beneficios-box .img-beneficios img{
    width: 70%;
}

.beneficios-box h3{
    margin: 20px 0;
}

.btn-beneficios{
    text-align: center;
}

.btn-beneficios button{
    font-size: 16px;
    margin-top: 16px;
    padding: 8px 16px;
    background-color: #FC6703;
    color: #fff;
    border: 0;
    border-radius: 20px;
    cursor: pointer;
    transition: .2s;
}

button:hover{
    transform: scale(1.1);
}

@media screen and (max-width: 980px){
    section.beneficios{
        padding: 60px 5%;
        margin-top: 80px;
    }

    .ajuste-beneficios{
        flex-direction: column;
    }

    .btn-beneficios button{
        width: 100%;
    }
}