// Remove elementos cujo texto contenha "get quote" (case-insensitive) (function(){function hide(){document.querySelectorAll('a, button, input[type="button"], input[type="submit"]').forEach(el=>{const txt=(el.textContent || el.innerText || el.value || "").trim().toLowerCase();if(txt.includes("get quote")) el.style.display="none"})}hide();// observa mudanças (útil se o botão for carregado depois) new MutationObserver(hide).observe(document.body,{childList:true,subtree:true})})();