* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2em;
}

.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5em;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 0.5em;
    color: #003366;
}

.descripcion {
    font-size: 1.1em;
    max-width: 600px;
    margin-bottom: 2em;
}

.btn {
    background-color: #003366;
    color: white;
    padding: 0.75em 1.5em;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1em;
    margin-bottom: 2em;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #0055aa;
}

.enlaces {
    display: flex;
    gap: 1.5em;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
    flex-wrap: wrap;
    font-size: 1em;
}

.enlaces a {
    color: #0055aa;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0 0.5em;
}

.enlaces a::after {
    content: "|";
    position: absolute;
    right: -0.8em;
    color: #888;
}

.enlaces a:last-child::after {
    content: ""; /* Elimina el separador del último enlace */
}

footer {
    background-color: #e9ecef;
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
}
