/* Tipografía institucional */
body {
    font-family: "Source Sans Pro", Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
    color: #333;
}

h1, h2, h3 {
    font-family: "Merriweather", serif;
    color: #030000;
}

/* HEADER UHU */
.header-uhu {
    background: #f4f4f4;
    border-bottom: 4px solid #b12c39;
    padding: 10px 20px;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-uhu {
    width: 140px;
}

.header-text h1 {
    margin: 0;
    font-size: 28px;
    color: #b12c39;
}

.header-text p {
    margin: 0;
    font-size: 16px;
    color: #444;
}

/* MEN� SUPERIOR UHU */
.menu-uhu {
    background: #b12c39;
    padding: 12px 20px;
    display: flex;
    gap: 25px;
}

.menu-uhu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.menu-uhu a:hover {
    text-decoration: underline;
}

/* CONTENIDO */
section {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
}

/* FOOTER */
footer {
    background: #b12c39;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
