/* =================================================MENU================================================= */

.menu {
    z-index: 2;

    width: 100%;
    height: 64px;

    display: flex;

    justify-content: center;
    align-items: center;

    position: fixed;

    top: 0;

    background-color: #fff;

    box-shadow: var(--box-shadow);
}

.menu-container {
    width: 100%;

    max-width: var(--max-width);

    padding: var(--padding);

    display: flex;

    justify-content: space-between;
    align-items: center;
}

.menu-logo {
    height: 48px;
}

.menu-pages {
    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;
}

.menu-page {
    padding: 12px;

    border-radius: 8px;

    list-style-type: none;

    color: var(--gray-60);

    text-align: center;
    font-size: 14px;

    font-weight: 500;

    transition: 300ms;
}

.menu-page:hover {
    background-color: rgba(0, 0, 0, 0.10);

    color: var(--blue-light-color);
}

.menu-button {
    display: none;

    width: 32px;
    height: 32px;

    background-color: transparent;

    border: 0 transparent;

    cursor: pointer;
}

.menu-icon {
    width: 100%;
    height: 100%;
}

.mobile-menu-container {
    height: 100vh;

    max-width: 300px;

    padding: 32px;
    position: absolute;

    top: 0;
    right: 0;

    display: none;

    background-color: #fff;
}

.menu-social-medias {
    margin-top: 30px;

    width: 100%;
}

.menu-social-buttom {
    width: 48px;
}

.menu-social-image {
    width: 32px;
    height: 32px;
}

/* Classe controladora do menu (Mostrar ou não mostrar) */
.mobile-menu-show {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: flex-start;

    overflow-y: hidden;
}

.mobile-menu-pages {
    margin-bottom: auto;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;
}

.mobile-menu-close-buttom {
    width: 24px;
    height: 24px;

    position: fixed;

    top: 16px;
    right: 16px;

    cursor: pointer;
}

.unscrollable {
    overflow-y: hidden;
}

.menu-back {
    z-index: 1;

    position: absolute;

    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    display: none;

    background-color: rgba(0, 0, 0, 0.2);
}


.show-menu-background {
    display: block;
}



@media screen and (max-width: 1000px) {
    .menu-pages {
        display: none;
    }

    .menu-button {
        display: block;
    }

}

@media screen and (max-width: 479px) {
    .menu-container {
        padding: 16px
    }

}