#main-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-family: Poppins;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.3));
    border-bottom: 1px solid black;
    position: fixed;
    top: 0;
}

.neo-container--main-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.main-header__logo img {
    height: 90px;
    width: auto;
}

.main-header__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
}

.main-header__nav__top {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    color: white;
    font-weight: 400;
    width: max-content;
    margin-left: auto;
}

.main-header__nav__top img {
    width: 22px;
    height: 22px;
}

.main-header__nav__bottom {
    display: flex;
    gap: 16px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    font-size: 14px;;
}

.main-header__menu-item {
    font-family: Poppins;
    font-weight: 400;
    color: #ccc;
    text-transform: uppercase;
}

.main-header__menu-item.active,
.main-header__menu-item:hover {
    color: white;
}

.main-header__menu-item.highlight {
    background-color: #73242a;
    padding: 4px 8px;
    font-weight: 500;
}

.main-header__menu-item.highlight-christmas,
.main-header__menu-item.highlight-christmas.active,
.main-header__menu-item.highlight-christmas:hover {
    background-color: #D6AD52;
    color: #fff;
    padding: 4px 8px;
    font-weight: 500;
}

.main-header__nav .btn-reservar {
    padding: 4px 24px;
}

.main-header__language {
    display: flex;
    gap: 16px;
}

.main-header__language a,
.main-header__language span {
    color: white;
    opacity: 50%;
    font-weight: 400;
}

.main-header__language a:not(.active) {
    cursor: pointer;
}

.main-header__language a.active,
.main-header__language span.active {
    opacity: 100%;
    cursor: default;
}

@media (max-width: 1024px) {
    #main-header {
        padding: 16px 0;
        border-bottom: 0px solid black;
    }
    .main-header__nav {
        display: none;
    }

    .main-header__logo img {
        height: 48px;
    }

    .main-header__language {
        display: none;
    }
}