#beneficiosSection {
    height: auto;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
}

#sectBeneficioTitle {
    margin-bottom: 20px;
}

#beneficiosContainer {
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.beneficioContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 250px;
}

.beneficioNumber {
    font-weight: 600;
    font-size: 120px;
}

.beneficioTitle {
    font-weight: 600;
    font-size: 28px;
    margin-top: 5px;
    text-align: center;
}

.beneficioP {
    font-weight: 400;
    font-size: 16px;
    margin-top: 5px;
    text-align: center;
}




@media all and (max-width: 900px) and (orientation: portrait) {
    #beneficiosContainer {
        width: 80%;
        height: auto;
        align-items: flex-start;
    }

    .beneficioNumber {
        font-size: 90px;
    }
    
    .beneficioTitle {
        font-size: 22px;
    }
    
    .beneficioP {
        font-size: 14px;
    }
}


@media all and (max-width: 500px) and (orientation: portrait) {
    @media all and (max-width: 900px) and (orientation: portrait) {
        #beneficiosContainer {
            width: 100%;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 40px;
        }
        .beneficioTitle {
            font-size: 22px;
            width: 80vw;
        }
        
        .beneficioP {
            font-size: 14px;
            width: 70vw;
        }
    }
}