// Injects Product JSON-LD into for product pages (function(){ try{ var path = location.pathname.replace(/\/+/g,'/'); var m = path.match(/\/produtos\/([a-z0-9-]+)-omnilife\/?$/i); var slug = ''; if(m){ slug = m[1]; } else { var fn = path.split('/').pop() || ''; slug = (fn.replace(/\.html?$/i,'')||'').toLowerCase(); } if(!slug) return; var NAMES = { omniplus:'Omniplus', omnimix:'Omnimix', omniviu:'Omniviu', omniost:'Omniost', onecmix:'One C Mix', kenyan:'Kenyan', starbien:'Starbien', egolife:'Egolife', fem:'Fem', homo:'Homo', uzo:'Uzo', aqtua:'Aqtua', aoecx:'Aoé CX', aoeliq:'Aoé Líquido', cafelife:'Cafelife', teatino:'Teatino', dolcevita:'Dolce Vita', fiber:'Fiber’n Plus', shake:'Shake', pmaker:'P+Maker', pump:'Pump', magnus:'Magnus', magnussup:'Magnus Supreme', ego10:'Ego 10' }; var product = NAMES[slug] || slug.replace(/-/g,' ').replace(/\b\w/g, s=>s.toUpperCase()); // Prefer hero image; fallback to uploads path on domain var img = ''; try{ var hero=document.getElementById('heroImg'); if(hero && hero.src) img = hero.src; }catch(_e){} if(!img){ img = 'https://site.negocioomni.com.br/wp-content/uploads/'+slug+'.jpg'; } var md=document.querySelector('meta[name="description"]'); var desc=(md && md.getAttribute('content')) ? md.getAttribute('content') : 'Resumo curto de 1–2 frases do produto.'; if(document.getElementById('ld-product')) return; var node=document.createElement('script'); node.type='application/ld+json'; node.id='ld-product'; var payload={ '@context':'https://schema.org', '@type':'Product', name: product+' Omnilife', image: [img], description: desc, brand:{'@type':'Brand', name:'Omnilife'}, sku: slug.toUpperCase() }; node.textContent = JSON.stringify(payload); (document.head||document.getElementsByTagName('head')[0]).appendChild(node); }catch(_e){} })();