/* Correção para o menu ficar apenas no topo */
/* Estilo para o menu flutuante */
.menu-toggle {
    position: fixed !important;
    top: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    background-color: rgba(11, 57, 84, 0.9) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    pointer-events: auto !important;
}

.menu-toggle:hover {
    transform: scale(1.1) !important;
    background-color: rgba(11, 57, 84, 1) !important;
}

/* Ajustes para visibilidade do menu no topo */
/* Estilo para o botão dentro do menu */
.menu-btn {
    background: none !important;
    border: none !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
}

/* Melhorar visibilidade do ícone do menu */
/* Estilo para o ícone do menu */
.menu-btn i {
    color: #fff !important;
    font-size: 20px !important;
    transition: color 0.3s ease !important;
}

.menu-btn:hover i {
    color: #D4AF37 !important; /* Cor dourada ao passar o mouse */
}

/* Garantir que o menu não seja afetado por outros estilos */
.menu-toggle, .menu-btn, .menu-btn i {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .menu-toggle {
        top: 20px !important;
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
    }
    
    .menu-btn i {
        font-size: 18px !important;
    }
}
