/* === HEADER.CSS === */
header {
    background-color: #6e98ae;
    padding: 10px 0;
    top: 0;
    z-index: 1000;
}

.datos {
    background-color: #72a0cb;
    min-height: 45px;
}

header img {
    height: 40px;
}

header > div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

/* Nav lista */
header ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

header li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 10px;
    transition: 0.2s all ease-in-out;
}

header li a:hover {
    background-color: white;
    color: #6e98ae;
}

.footer {
    background-color: #6e98ae;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    width: 100%;
}

.footer.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
}

.footer-contenido {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-contenido a {
    color: white;
    text-decoration: underline;
}

.footer-contenido a:hover {
    text-decoration: none;
}

.logo-print{
    display: none;
}

@media (min-width: 1250px) {
    header > div {
        padding: 0;
    }
}

@media (max-width: 1024px) {
    header>div {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 8px;
        column-gap: 20px;
        padding: 0 20px;
    }

    header>div>div {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    header nav {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 5px;
    }

    header nav ul {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    header>div {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px;
    }

    header nav ul {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    header>div>div {
        text-align: center;
    }
}

@media (max-width: 480px) {
    header img {
        height: 35px;
    }

    header nav ul {
        gap: 8px;
        font-size: 0.9rem;
    }
}