window.onReady = window.onReady || []; window.onReady.push(function () { const titulos = { "BLACK": "PROTOCOLO 21", "White": "GIOBLOG", "BLACK/WHITE": "SOBRE NÓS" }; const alterar = () => { document.querySelectorAll(".block-title h2").forEach(el => { const texto = el.textContent.trim(); if (titulos[texto]) { el.textContent = titulos[texto]; } }); }; alterar(); new MutationObserver(alterar).observe(document.body, { childList: true, subtree: true }); });