Yes, shortcodes are supported in WordPress patterns. However, the issue you’re experiencing with the ACF shortcode not rendering in your button pattern might be due to the fact that the pattern is not properly parsing the shortcode.
<?php echo do_shortcode('[acf field="button_text"]'); ?>
or You can use this
$button_text_shortcode = get_field('your_acf_field_for_button_shortcode');
echo do_shortcode($button_text_shortcode);