/* Estilos generales */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1594896733292-9a77b5809c63?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    font-family: 'Open Sans', sans-serif;
    color: #121212;
}

/* Logo / título */
.logo {
    text-align: center;
    padding: 20px 0 10px 0;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    margin: 0;
}

.logo img {
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
}

/* Tarjeta de contacto: centrada perfectamente */
#contacto {
    margin: auto;               /* Centra horizontal y verticalmente */
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    width: 420px;
    max-width: 90%;
    border-radius: 16px;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

#contacto h2 {
    font-weight: 700;
    color: #1a3c4a;
    margin-bottom: 20px;
}

#contacto p {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.6;
}

#contacto a {
    color: #1a6b8a;
    text-decoration: none;
    font-weight: 600;
}

#contacto a:hover {
    text-decoration: underline;
}

/* Footer: se ubica al final automáticamente */
#footer {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    backdrop-filter: blur(4px);
    /* Sin margin-top, ya que el margen auto de #contacto empuja el footer hacia abajo */
}

#footer .logo p {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Responsive para móviles */
@media only screen and (max-width: 719px) {
    .logo h1 {
        font-size: 2.2rem;
    }
    #contacto {
        width: 92%;
        padding: 20px 15px;
    }
    #contacto p {
        font-size: 1rem;
    }
}