// Section components — Hero, Product, Insight // Uses CSS variables set by theme.js const Eyebrow = ({ children }) => (
{children}
); const SectionLabel = ({ children }) => (
{children}
); // ─── PDF Mockup ────────────────────────────────────────────── const PDFMockup = () => (
{/* Inner page (left, behind) */}
DIAGNÓSTICO PATRIMONIAL · 2026
Análise de independência financeira
R$ 10M 5M 1M
2832384555
Patrimônio líquido projetadoR$ 8,4M
Renda passiva equivalenteR$ 42k/mês
Independência financeiraaos 51 anos
Cenário “começar em 5 anos”aos 58 anos
Carlos Bezerra · CFP® Página 7 / 22
{/* Cover page (right, on top) */}
DIAGNÓSTICO PATRIMONIAL
Confidencial Maio · 2026
001
Para [Nome do médico]
Preparado por Carlos Bezerra · Café Wealth Management
); // ─── Hero ──────────────────────────────────────────────────── const Hero = () => { const { hero } = CONTENT; return (
{hero.eyebrow}

{hero.title.map((line, i) => ( {line} ))}

Carlos Bezerra
Carlos Bezerra São Paulo

{hero.subtitle}

{hero.cta}

{hero.ctaSub}

{hero.badges.map((b, i) => (
{b}
))}
); }; // ─── Product ───────────────────────────────────────────────── const Product = () => { const { product } = CONTENT; return (
{product.section}

{product.headline}

{product.intro}

{product.items.map((it, i) => (
{it.n}

{it.title}

{it.body}

))}
{product.deliverableCaption}
{product.price}
{product.priceLine}
{product.cta}

{product.subtext}

); }; // ─── Insight ───────────────────────────────────────────────── const Insight = () => { const { insight } = CONTENT; return (
{insight.section}

{insight.headline}

{insight.body.map((p, i) => (

{p}

))}
    {insight.list.map((li, i) => (
  • {li}
  • ))}

{insight.closer}

); }; Object.assign(window, { Hero, Product, Insight, PDFMockup });