
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden; 
    position: relative;
    background-color: #BC9449;
}
.container {
    width: 100%;
    overflow-x: hidden; /* Asegura que no haya desbordamiento horizontal */
}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: -1;
} */

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

h1 {
    font-weight: 700;
    font-size: 3.5em;
    line-height: 1.1em;
    margin-bottom: 0.2em;
    color: #fff;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.header {
    text-align: center;
    margin-bottom: 40px; 
    padding: 20px; 
}

.images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.images-container a img {
    width: 600px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.images-container a img:hover {
    transform: scale(1.1);
}
/* //////////////////// MEDIA QUERIES ////////////////////  */
/* //////////////////// MEDIA QUERIES ////////////////////  */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    .content {
        padding-bottom: 40px; 
    }

    .header {
        margin-bottom: 20px;
        padding: 10px;
    }

    .images-container {
        flex-direction: column;
        gap: 10px;
    }

    .images-container a img {
        width: 100%;
        max-width: 300px;
    }
}

@media only screen and (min-width: 910px) and (max-width: 1280px) {
    h1 {
        font-size: 2.5em;
        margin-top: 0; /* Eliminar margen superior si es necesario */
    }
    
    .header {
        margin-bottom: 5px; /* Reduce el margen inferior para acercar el h1 a las imágenes */
        padding: 10px;
    }

    .content {
        padding-top: 10px; /* Ajuste adicional para reducir el espacio encima del h1 */
    }

    .images-container {
        gap: 30px; /* Reduce el espacio entre las imágenes */
    }

    .images-container a img {
        width: 100%;
        max-width: 350px;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1600px) {
    h1 {
        font-size: 3em;
        margin-top: 0;
    }

    .header {
        margin-bottom: 10px;
        padding: 10px;
    }

    .content {
        padding-top: 10px;
    }

    .images-container {
        gap: 40px;
    }

    .images-container a img {
        width: 100%;
        max-width: 450px;
    }
}




