.valores{
    height: 100vh;
    width: 100%;
    padding: 150px 110px;
}

.valores h3{
    font-family: "Poppins ExtraLight";
    color: #222;
    font-size: 35px;
    letter-spacing: 1.7px;
    margin-bottom: 5px;
    text-align: center;
}

.valores hr{
    width: 60px;
    margin: 0 auto;
    border: 1px solid var(--color-verde);
    margin-bottom: 50px;
}

.valores_container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.valor_item{
    width: 15%;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 4px 5px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.valor_item:hover img{
    transform: scale(1.15);
}

.valor_item:hover{
    box-shadow: 8px 10px 15px rgba(0,0,0,0.35);
}

.valor_item:nth-child(even){
    border: 3px solid var(--color-verde);
}

.valor_item:nth-child(odd){
    border: 3px solid var(--color-rosa);
}

.valor_item img{
    width: 75px;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.valor_item span{
    display: block;
    font-family: "Poppins Light";
    font-size: 16px;
    letter-spacing: 0.8px;
    color: #111111;
    text-align: center;
}

/*///////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////// RESPONSIVE /////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 700px) {

    .valores{
        padding: 70px 25px;
        height: auto;
    }

    .valores h3{
        font-size: 25px;
        letter-spacing: 1.2px;
    }

    .valores hr{
        width: 50px;
        margin-bottom: 30px;
    }

    .valores_container{
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .valor_item{
        width: 51%;
        padding: 30px 20px;
        margin-bottom: 50px;
    }

    .valor_item img{
        width: 50px;
        margin: 0 auto 15px auto;
    }

    .valor_item span{
        font-size: 14px;
        letter-spacing: 0.7px;
    }


}