(function () { const params = new URLSearchParams(window.location.search); const mapeamento = { 'first_name': 'first_name', 'email': 'email', 'phone_number': 'phone_number', 'utm_source': 'utm_source', 'utm_medium': 'utm_medium', 'utm_campaign': 'utm_campaign', 'utm_term': 'utm_term', 'utm_content': 'utm_content' }; const hidden = []; for (const [paramUrl, campoForm] of Object.entries(mapeamento)) { const valor = params.get(paramUrl); if (valor) hidden.push(campoForm + '=' + decodeURIComponent(valor)); } const el = document.getElementById('tf-wrapper'); el.setAttribute('data-tf-live', '01KP1WV8JVVFV0S9PE43JV5574'); if (hidden.length) el.setAttribute('data-tf-hidden', hidden.join(',')); window.tf.load();})();