.header-nosotros{
    height: 70vh;
    background-image: linear-gradient(rgba(176, 236, 176, 0.4), rgba(105, 177, 105, 0.4)), url('../img/banner-nosotros.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.header-nosotros h1 {
    font-size: 4rem;
    color: var(--fondo);
    margin-top: 120px;
    margin-left: 50px;
    background-color: rgba(17, 55, 29, 0.6); /* Fondo semitransparente opcional */
    border-radius:10px;
    padding: 0px 20px;
    font-weight: bold;
}

.boton-nosotros{
    border-radius: 50px;
    width: 200px;
    height: 40px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* eje X, eje Y, difuminado, color */
}

.titulo-seccion-valores{
    color: var(--texto);
    font-weight: 700;
}

.boton-nosotros p{
    margin-left: 20px;
    padding-top: 8px;
    font-size: 14px;
    font-weight: bolder;
}

.nosotros-hs{
    color: #c43737; 
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
}

.nosotros-somos{
    width: 30%;
    margin-left: 25px; 
}

.valor-agregado{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    width: 30%;
    margin-left: 25px;    
}

.valores-icon{
    margin-top: 25px;
}

.valores-corporativos {
    min-height: 100vh;
    display: block;
    padding: 20px 0;
}

.valores-corporativos .texto {
    flex: 1 1 400px;
    max-width: 600px;
}

.imagenes-valores {
    position: relative;
    flex: 1 1 400px;
    max-width: 500px;
    height: 450px;
}

.imagenes-valores img {
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 390px;
    transition: transform 0.3s ease;
}

.imagenes-valores .img-nosotros {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 80vh;
}

.imagenes-valores:hover .img-nosotros {
    transform: scale(1.05);
}

.valores-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    min-height: 80vh;
}
@media (max-width: 412px){
    .boton-nosotros{
        display: none;   
    }

    .valor-agregado {
        width: 90% !important;
        margin: 0 20px;
        margin-bottom: 20px;
    }

    .nosotros-somos{
        width: 90% !important;
        margin: 0 20px;
        margin-bottom: 20px;
    }

    .imagenes-valores{
        display: none;
    }
}