/* Menu Hamburguer */
.mana_menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mana_menu-toggle.active {
    z-index: 1003; /* Garantir que fique visível quando o menu está aberto - acima do menu */
}

.mana_menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s; /* Velocidade da animação do hamburguer */
}

/* Menu Fullscreen */
.mana_fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 248, 241, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10%);
    transition: all 0.3s linear;
}

.mana_fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mana_fullscreen-menu {
    text-align: center;
}

.mana_fullscreen-menu ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mana_fullscreen-menu ul li {
    margin: 25px 0;
    list-style: none !important;
    padding: 0 !important;
}

.mana_fullscreen-menu ul li a {
    text-decoration: none !important;
    color: #424141 !important;
    font-family: "Magoa", sans-serif !important;
    font-size: 2rem !important;
    font-weight: 400 !important;
    padding: 15px 25px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.8px !important;
    line-height: 20px !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .mana_menu-toggle {
        display: flex;
    }
}

/* Animação do hamburguer para X */
.mana_menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 7px);
}

.mana_menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mana_menu-toggle.active span:nth-child(3) {
    transform: rotate(43deg) translate(-6px, -7px);
}
