// How It Works — reduces anxiety, transparency microcopy // Inserted between Practice and Credibility. Informative tone (OAB Provimento 205 compliant). function ComoFunciona({ palette, serifFamily }) { const passos = [ { n: '01', titulo: 'First contact', texto: 'Send a message by WhatsApp or email describing your situation in Brazil — a contract, inheritance, divorce, unpaid debt. No long form, no signup.', tempo: 'Reply within 1 business day', }, { n: '02', titulo: 'Initial conversation', texto: 'A short video meeting in your time zone. We review what is happening, what documents exist, and the realistic legal options under Brazilian law.', tempo: 'In English, Spanish or Portuguese', }, { n: '03', titulo: 'Power of Attorney', texto: 'You sign and apostille a Power of Attorney in your country. From that moment I can act for you in Brazil — courts, banks, registries — without you traveling.', tempo: 'Most clients never come to Brazil', }, { n: '04', titulo: 'Execution & reporting', texto: 'Fees and strategy are agreed in writing before work begins. You receive plain-English updates at every milestone of the case.', tempo: 'Confidentiality by professional ethics', }, ]; return (

№ 03 — How it works

From first contact to an{' '} informed decision .

Looking for a lawyer often comes with anxiety and doubt. So you know exactly what to expect, this is the path most cases follow at the firm.

{passos.map((p, i) => { const ref = useReveal({ threshold: 0.1 }); return (
Step {p.n} {p.n}

{p.titulo}

{p.texto}

{p.tempo}

); })}
{/* Linha de microcopy de confiança */}
{[ 'Reply within 1 business day', 'Confidential service', 'Fees disclosed before work begins', 'Fees agreed in writing', ].map((t, i) => ( {t} ))}
); } window.ComoFunciona = ComoFunciona;