.bg-155E40{
    background:#155E40 !important;
}
.ff-montserrat{
    font-family: "Montserrat", "Nunito", sans-serif;
}
.contenedor-img-desarrollo-principal{
    overflow: hidden;
    position: relative;
    max-height: 90vh;
}
.titulo-pagina{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}
.img-desarrollo-principal{
    width: 100%;
    height: auto;
    animation: zoomInOut 7s ease-out;
}
.contenedor-titulo-desarrollo{
    width: 30%;
    min-width: 30px;
    max-width: 800px;
    color: white;
    font-size: 3vw;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    padding-left: 2.5%;
    animation: entradaTituloDesarrollo 3s ease-out;
}
.transition-xl{
    transition: all 5s ease-in-out;
}

.titulo-desarrollo-sostenible-seccion{
    font-size: 2.5vw; 
    color: #ECB45F; 
    text-align: center;
    font-weight: bold; 
}

@keyframes zoomInOut {
    0% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
@keyframes entradaTituloDesarrollo {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
@media (max-width: 768px) {
    .contenedor-titulo-desarrollo{
        padding-left: 5%
    }
    .titulo-desarrollo-sostenible-seccion{
    font-size: 5vw; 
}
}

    @media (max-width: 500px) {
    .contenedor-titulo-desarrollo{
        padding-left: 6%
    }
}


