/* Fuente y estilos globales */
body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #e6f0ff, #cce0ff); /* fondo celeste */
    color: #003366; /* texto azul oscuro */
}

/* Menú fijo con colores fríos */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #004080; /* azul invierno */
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 50, 0.2);
}






.menu a:hover {
    text-decoration: underline;
    color: #b3e0ff; /* azul claro al pasar el mouse */
}

/* Contenedor principal */
.contenido {
    max-width: 800px;
    margin: auto;
    padding: 100px 20px 40px;
    background-color: rgba(255, 255, 255, 0.9); /* blanco semitransparente */
    box-shadow: 0 0 12px rgba(0,0,100,0.1);
    border-radius: 12px;
}

/* Imagen */
.img-principal {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,50,0.1);
}

/* Enlaces */
a {
    color: #004080;
}
a:hover {
    text-decoration: underline;
    color: #3399ff;
}
.footer {
    background-color: #003366; /* azul oscuro */
    color: white;
    height: 60px;
    display: flex;
    justify-content: center; /* centra horizontalmente */
    align-items: center;     /* centra verticalmente */
    font-size: 14px;
    font-weight: bold;
    margin-top: 40px;
    box-shadow: 0 -2px 6px rgba(0, 0, 50, 0.1);
}
.galeria {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    gap: 5px; /* espacio entre imágenes */
    justify-content: center; /* centra horizontalmente */
    align-items: center;     /* centra verticalmente */
    padding: 5px 0;
}

.galeria img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    object-fit: cover;
}


/* Menú fijo con colores fríos */


.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.menu a i {
    margin-right: 6px;
}

.menu a:hover {
    text-decoration: underline;
    color: #b3e0ff; /* azul claro al pasar el mouse */
}

/* Contenedor principal */
.contenido {
    max-width: 800px;
    margin: auto;
    padding: 100px 20px 40px;
    background-color: rgba(255, 255, 255, 0.9); /* blanco semitransparente */
    box-shadow: 0 0 12px rgba(0,0,100,0.1);
    border-radius: 12px;
}

/* Imagen */
.img-principal {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,50,0.1);
}
a:hover {
    text-decoration: underline;
    color: #3399ff;
}
.footer {
    background-color: #003366; /* azul oscuro */
    color: white;
    height: 60px;
    display: flex;
    justify-content: center; /* centra horizontalmente */
    align-items: center;     /* centra verticalmente */
    font-size: 14px;
    font-weight: bold;
    margin-top: 40px;
    box-shadow: 0 -2px 6px rgba(0, 0, 50, 0.1);
}
