2026-05-13 22:20:11 +00:00
<!doctype html>
< html lang = "pt-BR" >
< head >
< meta charset = "UTF-8" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" / >
<!-- SEO Meta Tags -->
< title > O Produto - A Arquitetura da Escala< / title >
< meta name = "description" content = "Descubra o sistema minimalista de vendas usado pela elite do mercado para gerar lucro previsível sem dobrar a complexidade." / >
<!-- Open Graph / O que aparece no WhatsApp e Redes Sociais -->
< meta property = "og:type" content = "website" / >
< meta property = "og:title" content = "O Produto - A Arquitetura da Escala" / >
< meta property = "og:description" content = "Descubra o sistema minimalista de vendas usado pela elite do mercado para gerar lucro previsível." / >
<!-- Coloque aqui a URL de uma imagem sua para aparecer no WhatsApp (exemplo: 1200x630px) -->
< meta property = "og:image" content = "https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=1200&auto=format&fit=crop" / >
<!-- ============================================== -->
<!-- 1. GOOGLE TAG MANAGER (GTM) -->
<!-- ============================================== -->
<!-- Copie esse código e coloque sua tag onde tem GTM - XXXXXXX 👇 -->
<!--
< script > ( f u n c t i o n ( w , d , s , l , i ) { w [ l ] = w [ l ] | | [ ] ; w [ l ] . p u s h ( { ' g t m . s t a r t ' :
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:''; j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-XXXXXXX');< / script >
-->
<!-- ============================================== -->
<!-- 2. FACEBOOK PIXEL -->
<!-- ============================================== -->
<!-- Copie esse código e troque XXXXXXXXXX pelo ID do seu pixel 👇 -->
<!--
< script >
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', 'XXXXXXXXXX');
fbq('track', 'PageView');
< / script >
< noscript > < img height = "1" width = "1" style = "display:none"
src="https://www.facebook.com/tr?id=XXXXXXXXXX& ev=PageView& noscript=1"
/>< / noscript >
-->
< / head >
< body >
<!-- ============================================== -->
<!-- GTM (NOSCRIPT) PARA O BODY -->
<!-- ============================================== -->
<!-- Substitua o GTM - XXXXXXX do GTM abaixo também 👇 -->
<!--
< noscript > < iframe src = "https://www.googletagmanager.com/ns.html?id=GTM-XXXXXXX"
height="0" width="0" style="display:none;visibility:hidden">< / iframe > < / noscript >
-->
< div id = "root" > < / div >
< script type = "module" src = "/src/main.tsx" > < / script >
2026-05-15 13:54:01 +00:00
<!-- Theme Auto - Updater injected by autoblogia -->
< script >
2026-05-19 22:53:12 +00:00
<!-- Theme Auto - Updater injected by autoblogia -->
2026-05-19 23:02:52 +00:00
<!-- Theme Auto - Updater injected by autoblogia -->
2026-05-19 23:07:02 +00:00
<!-- Theme Auto - Updater injected by autoblogia -->
2026-05-19 22:53:12 +00:00
window.addEventListener('message', (event) => {
2026-05-15 13:54:01 +00:00
if (event.data & & event.data.type === 'UPDATE_APPEARANCE') {
2026-05-19 22:53:12 +00:00
const settings = event.data.settings;
if (!settings) return;
let css = '';
if (settings.primaryColor) {
css += "
:root { " +
"--color-brand-primary: " + settings.primaryColor + " !important; " +
"--color-brand-blue: " + settings.primaryColor + " !important; " +
"--color-brand-gold: " + settings.primaryColor + " !important; " +
"--color-blue-500: " + settings.primaryColor + " !important; " +
"--color-blue-600: " + settings.primaryColor + " !important; " +
"--color-emerald-500: " + settings.primaryColor + " !important; " +
"--color-emerald-600: " + settings.primaryColor + " !important; " +
"} " +
".text-brand-blue, .text-blue-600, .group-hover\:text-blue-600:hover, .text-brand-gold, .text-emerald-600, .text-blue-500, .text-emerald-500 { color: " + settings.primaryColor + " !important; } " +
".bg-brand-blue, .bg-blue-600, .hover\:bg-blue-500:hover, .bg-brand-gold, .bg-emerald-600, .bg-blue-500, .bg-emerald-500 { background-color: " + settings.primaryColor + " !important; } " +
".border-brand-blue, .border-blue-600, .focus\:border-blue-600:focus, .border-brand-gold, .border-emerald-600, .border-blue-500, .border-emerald-500 { border-color: " + settings.primaryColor + " !important; } " +
".fill-blue-600, .fill-emerald-600 { fill: " + settings.primaryColor + " !important; }";
2026-05-15 13:54:01 +00:00
}
2026-05-19 22:53:12 +00:00
if (settings.backgroundColor) {
css += "
:root { --color-brand-bg: " + settings.backgroundColor + " !important; } body { background-color: " + settings.backgroundColor + " !important; }";
2026-05-15 13:54:01 +00:00
}
2026-05-19 22:53:12 +00:00
if (settings.fontFamily) {
const fontLink = document.getElementById('dynamic-font');
const fontName = settings.fontFamily.replace(/ /g, '+');
const fontUrl = 'https://fonts.googleapis.com/css2?family=' + fontName + ':wght@300;400;500;600;700&display=swap';
if (fontLink) { fontLink.href = fontUrl; } else {
const link = document.createElement('link'); link.id = 'dynamic-font'; link.rel = 'stylesheet'; link.href = fontUrl; document.head.appendChild(link);
}
css += "
:root { " +
"--font-sans: "" + settings.fontFamily + "", sans-serif !important; " +
"--font-serif: "" + settings.fontFamily + "", serif !important; " +
"--font-mono: "" + settings.fontFamily + "", monospace !important; " +
"} * { font-family: "" + settings.fontFamily + "", sans-serif !important; }";
2026-05-15 13:54:01 +00:00
}
2026-05-19 22:53:12 +00:00
let styleNode = document.getElementById('dynamic-theme-style');
if (!styleNode) { styleNode = document.createElement('style'); styleNode.id = 'dynamic-theme-style'; document.head.appendChild(styleNode); }
styleNode.innerHTML = css;
2026-05-15 13:54:01 +00:00
}
});
// Ping parent window that we are ready
window.parent.postMessage({ type: 'IFRAME_READY' }, '*');
2026-05-19 22:53:12 +00:00
2026-05-19 23:02:52 +00:00
< / body >
2026-05-19 23:07:02 +00:00
< / body >
2026-05-19 22:53:12 +00:00
< / body >
2026-05-15 13:54:01 +00:00
< / script >
2026-05-13 22:20:11 +00:00
< / body >
< / html >