Sure not the best solution, but the one I used (functions.php):
function tema_scripts() {
wp_deregister_style('style');
wp_register_style('style', 'https://carteirarica.com.br/wp-content/themes/carteirarica/style.css', false, '1.0');
wp_enqueue_style('style');
add_action( 'wp_enqueue_scripts', 'tema_scripts' );
I′d better learn how the hell wordpress caches the old style.css and refresh it.