* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ENCABEZADO */
.encabezado {
    display: flex;
    background: linear-gradient(90deg, #002244 0%, #004080 50%, #002244 100%);
    color: white;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    border-bottom: 3px solid #ffcc00;
}

.bloque-logo {
    width: 20%;
    padding: 15px 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
}

.bloque-logo img {
    max-height: 200px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.bloque-nombre {
    width: 80%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.bloque-nombre h1 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 0 0 12px rgba(255, 204, 0, 0.4);
}

.guirnalda {
    height: 170px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.4));
}

.guirnalda-izq {
    transform: scaleX(-1);
}

/* GALERÍA DE FOTOS Y FONDO DESENFOCADO */
.contenedor {
    position: relative;
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    overflow: hidden;
}

.contenedor::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(fotos/fot4.jpeg);
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.7);
    z-index: 0;
}

.visor_fotos {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 3px solid #002244;
    background-color: #002244;
}

.visor_fotos img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-right: 2px solid #002244;
    border-bottom: 2px solid #002244;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.visor_fotos img:hover {
    transform: scale(1.02);
    z-index: 2;
    filter: brightness(1.08);
}

.visor_fotos img:nth-child(3n) {
    border-right: none;
}

.visor_fotos img:nth-child(n+4) {
    border-bottom: none;
}

/* CONTACTO Y MAPA */
.seccion-contacto {
    background: linear-gradient(180deg, #001a33 0%, #000d1a 100%);
    color: white;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid #ffcc00;
    margin-top: auto;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.3);
}

.seccion-contacto h2 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.info-contacto {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    font-size: 17px;
    margin-bottom: 20px;
}

.info-contacto p {
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mapa-contenedor {
    margin-top: 20px;
    width: 100%;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 204, 0, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.mapa-contenedor iframe {
    width: 100%;
    height: 260px;
    display: block;
}

@media (max-width: 768px) {

    .encabezado {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bloque-logo {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.15);
        padding: 10px;
    }

    .bloque-logo img {
        max-height: 120px; 
    }

    .bloque-nombre {
        width: 100%;
        gap: 10px;
        padding: 15px 10px;
    }

    .bloque-nombre h1 {
        font-size: 18px; 
        letter-spacing: 1px;
    }

    .guirnalda {
        height: 60px; 
    }


    .visor_fotos {
        grid-template-columns: 1fr; 
    }

    .visor_fotos img {
        height: 280px; 
        border-right: none;
        border-bottom: 3px solid #002244;
    }

    .visor_fotos img:last-child {
        border-bottom: none;
    }

    
    .info-contacto {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .info-contacto p {
        width: 100%;
        max-width: 320px;
    }

    .mapa-contenedor iframe {
        height: 200px; 
    }
}