Hello . Thank you for your support.
I solved it with this snippet on child theme on function.php.
/**
* Show product attributes after product meta
*/
add_action ( 'woocommerce_product_meta_end', 'show_attributes', 25 );
function show_attributes() {
global $product;
wc_display_product_attributes( $product );
}