header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #F0BC23;
}

header #up div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Nunito', sans-serif;
    color: #363040;
    font-weight: bold;
    font-size: clamp(1rem, 2vw, 1.25rem);
    padding: 1rem 0;
}

header div img {
    width: clamp(3.75rem, 5vw, 8rem);
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    background-color: #363040;
    width: 100%;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style-type: none;
}

nav ul li {
    padding: 1rem;
    transition: 0.2s ease-in-out;
}

nav ul li:hover {
    background-color: #F0BC23;
}

nav ul li:hover>a {
    font-weight: bold;
    color: #363040;
}

nav ul li a {
    font-size: clamp(14pt, 3vw, 18pt);
    color: white;
    font-weight: 200;
    white-space: nowrap;
}

nav #denunciaLi a {
    font-weight: bold;
}

/*responsividade*/
@media (max-width: 1000px) {
    nav {
        display: none;
    }

    header #up {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 90%;
    }
}

@media (max-width: 800px) {
    header #up {
        justify-content: space-around;
    }
}

@media (max-width: 500px) {
    header #up div h1 {
        display: none;
    }

    header #up {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 95%;
    }
}