/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 03 2025 | 11:52:45 */
// 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});
})();
