Hi Ben, thanks for the help.
Basically my steps were:
Compress public_html in file manager and dowload them
Went to phpMyAdmin and export in SQL format
Create website in Local
Went to local folder, delete all and paste the files that I had compressed.
Went to adminer, dump the database and import the one that I had export previsously
Replace live site urls with local urls:
UPDATE wp_options SET option_value = replace(option_value, 'https://www.yoursitename.com', '
http://yoursitename.local') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET post_content = replace(post_content, 'https://www.yoursitename.com',
'http://yoursitename.local');
UPDATE wp_postmeta SET meta_value =
replace(meta_value,'https://www.yoursitename.com','http://yoursitename.local');
Update site details
define('DB_NAME', 'local');
define('DB_USER', 'root);
define('DB_PASSWORD', 'root');
define('DB_HOST', 'localhost');
Then give an error about wordfence-waf. that is now fixed.
Then went to local and launch site and that was it.
What you think?