Hi, Michael.
Would it be something like this?
add_filter('quform_post_process_1', function (array $result, Quform_Form $form) {
$title = $form->getValue('quform_1_3');
$content = $form->getValue('quform_1_9');
$nomeainserir = $form->getValue('quform_1_6');
$post = array(
'post_title' => $title,
'post_content' => $content,
'post_type' => 'ficha',
'post_status' => 'draft',
);
$post_id = wp_insert_post( $post );
update_post_meta( $post_id, 'ficha_nome', $nomeainserir );
update_post_meta( $post_id, 'ficha_email', $nomeainserir );
update_post_meta( $post_id, 'post_status', 'publish' );
return $result;
}, 10, 2);