.alert-bar {
    display: flex;
    padding: 7px;
}

.alert-bar__text-container {
    margin: auto;
}

.navigation__list,
.header__container {
    max-width: var(--container-max-width);
    width: var(--container-width);
    display: flex;

    margin: auto;
    align-items: center;
    flex-direction: row;
}

.alert-bar__text-container,
.navigation__link {
    font-family: var(--text-font);
    font-size: var(--font-size-sm);
}

/* Search */
.header__search {
    display: none;
}

/* Header */
.header__container {
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

/* Navigation */
.navigation__list {
    justify-content: space-between;
    height: 61px;
}

.navigation {
    display: none;
}

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

/* Others */
.user_menus {
    display: flex;
    align-items: center;
    gap: 8px;
}

/*Wait*/
.navigation__categories {
    width: 25px;
    height: 28px;
}

.user_menus__icon {
    min-width: 30px;
    height: 30px;
    align-items: center;
    display: flex;
}

.header__logo-image {
    aspect-ratio: 180 / 0;
    width: 160px;
    height: auto;
}

@media screen and (min-width: 851px) {
    .user_menus__icon--user {
        min-width: 105px;
        height: 40px;
    }
}

@media screen and (min-width: 1024px) {
    .header__search,
    .navigation {
        display: flex;
    }

    .header {
        margin: 0;
    }

    .header__search {
        margin: auto;
        min-width: 215px;
        min-height: 30px;
        width: 100%;
        max-width: 400px;
    }

    .header__logo {
        margin: 0;
    }

    .header__container {
        justify-content: flex-start;
    }

    .header__logo-image {
        width: 180px;
    }
}

@media screen and (max-width: 1023px) {
    .header__container {
        padding: 25px 0;
    }
}

/* Centralizar Logo */

@media screen and (max-width: 1023px) {
    .header__logo-image {
        position: absolute;
        transform: translate(0%, -50%);
    }

    .header__container {
        padding: 25px 0;
    }
}

@media screen and (max-width: 850px) {
    .header__logo-image {
        transform: translate(-25%, -50%);
    }
}

@media screen and (max-width: 450px) {
    .header__logo-image {
        transform: translate(-35%, -50%);
    }
}

@media screen and (max-width: 374px) {
    .header__logo-image {
        width: 140px;
    }
}
