.landing-first{
    display: flex;
    margin-top: 120px;
    align-items: flex-start;
}
.landing-first-left{
    width: 40vw;


}
.landing-first-right{
    margin-left: 5vw;
    margin-top: auto;
    width: 50vw;

}

/* Titulo */
.landing-first .title{
    margin-top: 7vw;
    margin-bottom: 2vw;
    font-family: var(--secondary-font-family);    
}


/* Cuadros */
.landing-second{
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
    color: var(--text-color-light);
}


.landing-second .square {
    width: 20%;
    height: 0;
    padding-bottom: 10%; /*esto es la proporcion */
    position: relative;
    border: 1px solid black;
    overflow: hidden;
    margin: auto;
    color: var(--text-color-light);
}


.landing-second .square img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    position: absolute; 
    top: 0;
    left: 0;
    transition: .5s;
}

.landing-second .square:hover img{
    filter: blur(3.5px);
}

.landing-second .square-content {
    position: absolute;
    bottom: 0%; 
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); 
    height: fit-content;
}




.landing-second .square:hover .square-content h4 {
    transform: scale(1.1);
}

/* Seccion de nosotros*/
.landing-third{
    margin-top: 100px;
    height: fit-content;
}

.landing-third iframe{
    width: 70%;
    aspect-ratio: 16/9;
    margin-left: 15%;
    margin-top: 50px;
}


/* Fotos nosotros */
.landing-fourth{
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
    align-items: center;
}
.landing-fourth .text{
    width: 20%;
    margin-left: 10%;
    

}
.landing-fourth .text h4{
    font-family: var(--secondary-font-family);
    width: 100%;
}
.landing-fourth .text p{
    margin-top: 20px;
    width: 100%;
    
}

.landing-fourth .foto{
    position: relative;
    width: 21%;
    color: var(--text-color-light);
    
}
.landing-fourth .foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

#mauricio{
    margin-left: 10.5%;
    
}
#angelica{
    margin-left: 7%;
}

.landing-fourth .foto .descripcion-foto{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Fondo negro semi-transparente */
    color: var(--text-color-light);
    text-align: center;
    padding: 10px 0;


}

/* Contacto */
.landing-fifth{
    text-align: center;
    padding-bottom: 30px;
    width: 70%;
    margin: auto;
    margin-top: 100px;
    
}
.landing-fifth h2{
    padding-top: 25px;
    
}
.landing-fifth .container{
    display: flex;
    flex-wrap: wrap;
}
.landing-fifth .container div{
    width: 45%;
    margin: auto;   
}
.landing-fifth .container img{
    width: 100%;
}
.landing-fifth ul{
    text-align: justify;
    list-style: none;
    width: 45%;
    margin: auto;
    /* margin-left: 37.5%; */
    

}
.landing-fifth li{
    width: 100%;
    margin-top: 15px;
}
.landing-fifth li a{
    display: flex;
}
.landing-fifth i{
    margin-right: 10%;
}

/* Responsive */

@media (max-width: 991px) {
    /* .landing-first .title .h2{
        margin-left: 0;
    } */
    .landing-first-left{
        width: 90%;
        margin: auto;
    
    }
    .landing-first .title{
        margin-left: 0;
        
    }
    .landing-first-right{
        width: 90%;
        margin: auto;
    }
    .landing-first{
        display: flex;
        margin-top: 0;
        flex-direction: column;
    }
    .rollo-container{
        width: 90%;
        margin-left: 5%;
        margin-bottom: 20px;
        display: flex;

    }
    .landing-second .square{
        width: 42.5%;
        padding-bottom: 40%;
        margin-bottom: 10px;
        margin-top: 5%;

    }
    .landing-second .left{
        margin-left: 5%;
        margin-right: 2.5%;
    }
    .landing-second .right{
        margin-left: 2.5%;
        margin-right: 5%;
    }
    .landing-second{
        margin-top: 5%;
    }
    .landing-third{
        margin: 0;
        margin-top: 50px;
    }
    .landing-third  h4 {
    display: block;
    margin-left: 5vw;
    }


    .landing-third iframe{
        width: 90%;
        margin: 0 5% 0 5%
    }

    .landing-fourth{
        display: flex;
        flex-wrap: wrap;
        margin-top: 50px;
        align-items: start;
    }
    .landing-fourth .text{
        width: 65%;
        margin-left: 18.5%;
        text-align: center;
        margin-bottom: 10px;
        
    
    }
    .landing-fourth .foto{
        position: relative;
        width: 40%;
        margin: 10px 5% !important;
    
        
    }
    .landing-fourth .foto .descripcion-foto {
        position: static;
        width: auto;
        background: none;
    
        padding: 0;
        text-align: left;
        margin-top: 5px;
    }
    .landing-fifth{
        width: 90%;
    }
    .landing-fifth ul{
        width: 90%;
        margin-left: 5%;
        text-align: center;
    }
    

    .landing-fifth .container{
        display: block;
    }
    .landing-fifth .container div{
        display: none;  
    }
    .landing-fifth ul{
        width: fit-content;
        margin: auto;
    
    }

    #inicio, #nosotros, #contacto {
        scroll-margin-top: 10vh; /* Desplaza el contenido hacia abajo para centrarlo */
    }
}


/* desplazamiento */
#inicio, #nosotros, #contacto {
    scroll-margin-top: 30vh; /* Desplaza el contenido hacia abajo para centrarlo */
}