function Blog() { const D = (window.SITE && window.SITE.blog) || {}; const POSTS = (window.SITE && window.SITE.posts) || []; if (!POSTS.length) { return (
{D.eyebrow}

{D.title} {D.titleAccent}

Em breve, novos artigos.

); } const featured = POSTS.find(p => p.featured) || POSTS[0]; const rest = POSTS.filter(p => p !== featured); return (
{D.eyebrow}

{D.title}
{D.titleAccent}

{D.ctaLabel}
{rest[0] && } {rest[1] && }
{rest[2] && }
{(rest[3] || rest[4]) && (
{rest[3] && } {rest[4] && }
)}
); } function BlogCard({ post, feature, compact, horizontal }) { return (
{ e.currentTarget.style.transform = 'translateY(-2px)'; e.currentTarget.style.boxShadow = 'var(--shadow-md)'; }} onMouseLeave={(e) => { e.currentTarget.style.transform = ''; e.currentTarget.style.boxShadow = ''; }}> {!compact && (
{!post.cover && imagem · {(post.cat||'').toLowerCase()}}
)}
{post.cat} {post.date} · {post.read}

{post.title}

{(feature || horizontal) && post.excerpt && (

{post.excerpt}

)} {post.author && !compact && (
por {post.author}
)}
); } function FAQ() { const D = (window.SITE && window.SITE.faq) || {}; const settings = (window.SITE && window.SITE.settings) || {}; const items = D.items || []; const [open, setOpen] = React.useState(0); const waDigits = (settings.contact && settings.contact.whatsappDigits) || '5544999451010'; return (
{D.eyebrow}

{D.title}

{D.subtitle}

{D.ctaLabel}
{items.map((it, i) => { const isOpen = i === open; return (

{it.a}

); })}
); } window.Blog = Blog; window.FAQ = FAQ;