*{
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    border: 0;
}
body{
    
    background-image: url("../img/fondo-2.jpg");
    
    z-index:1;
}


 /*----------------------*/   

img{
    width: 130px;
    z-index: -10;
}


.nav {

    position: fixed;
    width: 100%;
    margin: auto;
    margin-top: -120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 20px;
    height: 85px;
    z-index: 10;
}

.logo {
    color: white;
    font-size: 24px;
}

.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.menu li {
    margin-left: 20px;
}

.menu a {
    color: #0c111d;
    text-decoration: none;
    padding: 10px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.menu a:hover{
    color: #D59F3A;
}




.hamburger {
    display: none;
    font-size: 24px;
    color: rgb(12, 12, 12);
    cursor: pointer;
}



@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        background-color: #f3f3f3;
        width: 100%;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }


}


@media (max-width: 430px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        background-color: #f3f3f3;
        width: 100%;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }



 

}


button{
    width: 150px;
    height:50px ;
    font-size: 19px;
    font-weight: 600;
    border-radius: 15px;
    color: #ffffff;
    background-color: #D59F3A;
    cursor: pointer;
    border: 0;
}


/*--------Gallery----------*/


.gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    margin-top: 120px;

}

.gallery-item {
    width: 800px;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.2s;
    border-radius: 15px;
}

.gallery-item :hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


.logo_final{
    width: 100%;
    height: auto;
    margin-top: -20px;


}
.logo_final div{
    background-color: #0c111d;
    
}
.logo_container{
    display: flex;
    justify-content: center;
    height: 80px;
    align-items: center;
}

video{
    width: 90%;
    border-radius: 20px;
}


@media (max-width:412px){
    .gallery-item{
        width: 50px;
    }

    
}



@media (max-width :1024px){
    body{
        background-image: url("../img/fondo-vertical.jpg")
    }

    .gallery-item{
        width: 500px;
    }


}

@media (max-width: 1600px){
    
    .gallery-item{
        width: 700px;
    }
}

@media (max-width: 430px){
    .gallery-item{
        width: 300px;
    }
    body{
        background-image: url("../img/fondo-vertical.jpg")
    }
}