.Carrousel_Nosotros {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

/* Fuerza estructura de slides */
.Carrousel_Nosotros .swiper-wrapper {
    height: 340px;
    align-items: center;
}

/* Cada slide ocupa todo el alto */
.Carrousel_Nosotros .swiper-slide {
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Imagen bien centrada */
.Carrousel_Nosotros img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* clave para evitar cortes raros */
    display: block;