/* global React, Icon */ const { useState: useStateDash, useEffect: useEffectDash, useRef: useRefDash } = React; // ============================================ // DashboardMockup — shown in hero (3D perspective) // Inspired by the real product grid but redesigned // ============================================ function DashboardMockup() { const modules = [ { n: 'Atendimentos', i: 'whatsapp', c: '#25D366', badge: 8 }, { n: 'CRM Kanban', i: 'kanban', c: '#8b5cf6' }, { n: 'Contatos', i: 'users', c: '#06b6d4' }, { n: 'Contratos', i: 'contract', c: '#f59e0b' }, { n: 'Financeiro', i: 'money', c: '#10b981', badge: 3 }, { n: 'Agendamentos', i: 'calendar', c: '#3b82f6' }, { n: 'Campanhas', i: 'megaphone', c: '#ec4899' }, { n: 'BOT & IA', i: 'bot', c: '#6366f1' }, { n: 'Tarefas', i: 'task', c: '#14b8a6' }, { n: 'E-mail', i: 'mail', c: '#ef4444' }, { n: 'Tickets', i: 'ticket', c: '#f97316' }, { n: 'Relatórios', i: 'chart', c: '#3b5bdb' }, ]; return (