(() => { const { SectionLabel, Button, GhostLink, Tag, ScrollReveal, LineReveal, Parallax, PointerDrift, GradientOrb, ConcentricRings } = window.DigitalConteDoDesignSystem_c80f58; const C = window.DC_CONTENT; function ServicoItem({ servico, index, open, onToggle }) { const m = window.useIsMobile(); return (
{open ? (
{m ? null : }

{servico.abre}

{servico.entregaTitulo} {servico.entrega.map((e) => (
{e}
))}
Como funciona {servico.passos.map(([titulo, texto], i) => (
{String(i + 1).padStart(2, "0")}
{titulo}

{texto}

))}
) : null}
); } function ServicesScreen({ onNavigate }) { const [open, setOpen] = React.useState(0); const m = window.useIsMobile(); const narrow = window.useIsMobile(1180); return (
Serviços

Cada frente pode ser contratada isoladamente — mas foi desenhada para funcionar em conjunto. Abra um serviço para ver o passo a passo.

{C.servicos.map((s, i) => setOpen(i)}>{s.curto})}
{C.servicos.map((s, i) => ( setOpen(open === i ? -1 : i)} /> ))}
{ e.preventDefault(); onNavigate("faq"); }}>Perguntas frequentes
); } Object.assign(window, { ServicesScreen }); })();