.imagenNosotros {
    width: 100%;
    height: auto; /* Ajustá según lo que busques */
    overflow: hidden;
}

.imagenNosotros img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta para que se vea más alto y no deformado */
}


.contenedorNos {
    background: linear-gradient(to bottom, #3a93d2, #a6c4d9);
}

.textosNos {
    width: 800px;
    height: auto;
    margin: 0 auto;
    padding: 5em 0;
    color: #fff;
}

/* ANIMACIONES */
.animated {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated.active {
    opacity: 1;
    transform: translateY(0);
}

.animated.inactive {
    opacity: 0;
    transform: translateY(50px);
}

/* SECCIÓN DE PROPUESTA DE VALOR */
.propuesta-de-valor_contenedor {
    position: relative;
    bottom: 10px;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0em 18% 5em 18%;
}

.contenedor-titulo-propuesta {
    width: 100%;
    text-align: center;
    margin: 0;
    padding-bottom: 1em;
}

.contenedor-titulo-propuesta h2 {
    font-size: 40px;
    color: #fff;
}

.grid-propuestaIcons {
    margin-top: 1em;
    display: grid;
    grid-template-columns: 220px 220px 220px 220px;
    grid-template-rows: 90px 50px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.grid-propuestaIcons.active {
    opacity: 1;
    transform: translateY(0);
}

.item1_item, .item2_item, .item3_item, .item4_item,
.item5_item, .item6_item, .item7_item, .item8_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.item5_item, .item6_item, .item7_item, .item8_item {
    font-size: 18px;
 
}

.item1_item img, .item2_item img, .item3_item img, .item4_item img {
    width: 90px;
    height: auto;
    color: #fff;
}

/* 🟢 Hasta 600px: 1 columna */
@media (max-width: 600px) {
    .textosNos {
        width: 90%;
        padding: 4em 1em;
    }

    .propuesta-de-valor_contenedor {
        padding: 2em 5% 5em 5%;
    }

    .grid-propuestaIcons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .item1_item { order: 1; }
    .item5_item { order: 2; }

    .item2_item { order: 3; }
    .item6_item { order: 4; }

    .item3_item { order: 5; }
    .item7_item { order: 6; }

    .item4_item { order: 7; }
    .item8_item { order: 8; }
}

/* 🟡 Entre 601px y 1024px: 2 columnas */
@media (min-width: 601px) and (max-width: 1024px) {
    .textosNos {
        width: 90%;
        padding: 4em 2em;
    }

    .propuesta-de-valor_contenedor {
        padding: 2em 8% 5em 8%;
    }

    .grid-propuestaIcons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2em;
    }

    /* Orden de los elementos para que queden en pares */
    .item1_item { order: 1; }     .item2_item { order: 2; }
    .item5_item { order: 3; }     .item6_item { order: 4; }




    .item3_item { order: 5; }    .item4_item { order: 6; }
    .item7_item { order: 7; }    .item8_item { order: 8; }


}