

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    background-image: url('/img/Sede-Lima-1024x918.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Overlay para oscurecer el fondo */
body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); /* Cambia el color aquí si prefieres otro tono */
    z-index: 1;
}

/* Centrado y sombra del logo */
.logo {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 3rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.7)); /* Sombra suave y profunda */
    scale: 70%;
}
