/* Estilos generales mejorados para centrar imágenes y videos */

body {
    font-family: Arial, sans-serif;
    background-color: #FAF8F6;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Galería de imágenes centrada */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery-grid img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Videos centrados sin modificar tamaño original */
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.video-gallery iframe {
    width: 560px;
    height: 315px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Ajuste para los contenedores de imágenes individuales */
.foto-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.foto-container img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Mantener el logo en su posición original */
.logo {
    display: block;
    position: relative;
    height: auto;
    margin-left: 0;
    height: 70px;
}

