main{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 32px;
    h2{
        margin-top: 64px;
        text-align: center;
        font-weight: 300;
        color: var(--azul);
        letter-spacing: 1px;
        text-wrap: balance;
        width: 90%;
    }
}

#listUs{
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 90%;
}

.usItem{
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 350px;
    width: 23%;
    background: var(--azul);
    border-radius: 3px;
    .usItemImg{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 23px;
        height: 80%;
        width: 100%;
        /*background-color: var(--azul_ultra_claro);*/
    }
    .usItemDesc{
        display: flex;
        flex-direction: column;
        font-size: 0.9rem;
        text-align: center;
        justify-content: space-evenly;
        background-color: #fff;
        height: 20%;
        width: 100%;
        border: 1px solid var(--gris);
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
        p{
            margin: 0;
        }
        p:nth-child(2){
            font-size: 0.8rem;
            color: var(--gris_oscuro);
        }
    }
}

.mainText{
    text-align: center;
    color: var(--azul);
    line-height: 24px;
    width: 80%;
    font-size: 0.9rem;
}

@media(max-width:950px){
    #listUs{
        width: 95%;
    }
}

@media(max-width:700px){
    .usItem{
        width: 30%;
    }
}

@media(max-width:500px){
    .usItem{
        width: 45%;
    }

    .mainText{
        width: 90%;
    }
}

@media(max-width:360px){
    .usItem{
        width: 90%;
    }
}