.header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 4em;
    width: 100%;
    background-color: var(--cinza-escuro);
}

.header_slogan {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_slogan > img {width: 80px;}
.header_slogan > h1 {
    color: var(--white);
    font-weight: 400;
}

.header_links {
    display: flex;
    gap: 24px;
}

.header_links > a {
    color: var(--white);
    font-size: 1.4em;
}

@media (max-width: 1000px) {
    .header_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .header_slogan {
        margin-bottom: 2em;
    }
}