2026-05-13 22:18:41 +00:00
<!doctype html>
< html lang = "pt-BR" >
< head >
< meta charset = "UTF-8" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" / >
<!-- Primary Meta Tags -->
< title > Health Premium | Excelência em Saúde, Estética e Bem-estar< / title >
< meta name = "title" content = "Health Premium | Excelência em Saúde, Estética e Bem-estar" / >
< meta name = "description" content = "Um novo conceito de clínica médica e estética. Especialistas em dermatologia, odontologia premium, performance e longevidade." / >
<!-- Open Graph / Facebook -->
< meta property = "og:type" content = "website" / >
< meta property = "og:url" content = "https://www.healthpremium.com.br/" / >
< meta property = "og:title" content = "Health Premium | Excelência em Saúde, Estética e Bem-estar" / >
< meta property = "og:description" content = "Um novo conceito de clínica médica e estética. Especialistas em dermatologia, odontologia premium, performance e longevidade." / >
< meta property = "og:image" content = "https://loremflickr.com/1200/630/clinic,luxury/all" / >
<!-- Twitter -->
< meta property = "twitter:card" content = "summary_large_image" / >
< meta property = "twitter:url" content = "https://www.healthpremium.com.br/" / >
< meta property = "twitter:title" content = "Health Premium | Excelência em Saúde, Estética e Bem-estar" / >
< meta property = "twitter:description" content = "Um novo conceito de clínica médica e estética. Especialistas em dermatologia, odontologia premium, performance e longevidade." / >
< meta property = "twitter:image" content = "https://loremflickr.com/1200/630/clinic,luxury/all" / >
<!-- Favicon -->
< link rel = "icon" href = "data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>✨</text></svg>" >
<!-- Schema Markup (JSON - LD) -->
< script type = "application/ld+json" >
{
"@context": "https://schema.org",
"@type": "MedicalClinic",
"name": "Health Premium",
"image": "https://loremflickr.com/1200/630/clinic,luxury/all",
"@id": "https://www.healthpremium.com.br/",
"url": "https://www.healthpremium.com.br/",
"telephone": "+55 11 99999-9999",
"address": {
"@type": "PostalAddress",
"streetAddress": "Av. Faria Lima, 3400 - 15º Andar",
"addressLocality": "São Paulo",
"addressRegion": "SP",
"postalCode": "04538-132",
"addressCountry": "BR"
},
"description": "Clínica premium com especialistas em dermatologia, odontologia, estética facial e medicina do estilo de vida."
}
< / script >
< / head >
< body >
< div id = "root" > < / div >
< script type = "module" src = "/src/main.tsx" > < / script >
2026-05-15 13:53:48 +00:00
<!-- Theme Auto - Updater injected by autoblogia -->
< script >
2026-05-19 22:53:07 +00:00
<!-- Theme Auto - Updater injected by autoblogia -->
2026-05-19 23:02:47 +00:00
<!-- Theme Auto - Updater injected by autoblogia -->
2026-05-19 23:06:56 +00:00
<!-- Theme Auto - Updater injected by autoblogia -->
2026-05-19 22:53:07 +00:00
window.addEventListener('message', (event) => {
2026-05-15 13:53:48 +00:00
if (event.data & & event.data.type === 'UPDATE_APPEARANCE') {
2026-05-19 22:53:07 +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:53:48 +00:00
}
2026-05-19 22:53:07 +00:00
if (settings.backgroundColor) {
css += "
:root { --color-brand-bg: " + settings.backgroundColor + " !important; } body { background-color: " + settings.backgroundColor + " !important; }";
2026-05-15 13:53:48 +00:00
}
2026-05-19 22:53:07 +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:53:48 +00:00
}
2026-05-19 22:53:07 +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:53:48 +00:00
}
});
// Ping parent window that we are ready
window.parent.postMessage({ type: 'IFRAME_READY' }, '*');
2026-05-19 22:53:07 +00:00
2026-05-19 23:02:47 +00:00
< / body >
2026-05-19 23:06:56 +00:00
< / body >
2026-05-19 22:53:07 +00:00
< / body >
2026-05-15 13:53:48 +00:00
< / script >
2026-05-13 22:18:41 +00:00
< / body >
< / html >