/* global React, GenesisLogo, SlashMotif, Reveal, RotatingWord, Eyebrow, StepBadge */ const { useState, useEffect, useRef } = React; /* ============================================================ THEME RAIL — seletor vertical delicado na lateral (segue o scroll) ============================================================ */ function ThemeRail({ theme, onTheme }) { const themes = [ { id: "dark", label: "Escuro", icon: }, { id: "glass", label: "Vidro", icon: }, { id: "light", label: "Claro", icon: <> }, ]; return (
{themes.map((th) => ( ))}
); } /* ============================================================ THEME SWITCH — seletor de tema + acento no header ============================================================ */ function ThemeSwitch({ theme, accentMode, onTheme, onAccent }) { const themes = [ { id: "dark", label: "Escuro", icon: }, { id: "glass", label: "Vidro", icon: }, { id: "light", label: "Claro", icon: <> }, ]; const accents = [ { id: "mint", color: "#3CE285", label: "Menta" }, { id: "cyan", color: "#10CAFE", label: "Ciano" }, ]; return (
{themes.map((th) => ( ))}
); } /* ============================================================ HEADER ============================================================ */ function Header({ theme = "dark", accentMode = "mint", onTheme, onAccent }) { const [menu, setMenu] = React.useState(false); const links = [ ["#governanca", "Governança"], ["#ia-atendimento", "IA WhatsApp"], ["#assinaturas", "Assinaturas"], ["#fechamento", "Fechamento"], ["#planos", "Planos"], ]; const themes = [ ["dark", "Escuro"], ["glass", "Vidro"], ["light", "Claro"], ]; React.useEffect(() => { document.body.style.overflow = menu ? "hidden" : ""; return () => { document.body.style.overflow = ""; }; }, [menu]); return (
Ver Planos
{/* Menu mobile */}
Tema
{themes.map(([id, label]) => ( ))}
setMenu(false)}> Ver Planos
); } /* ============================================================ HERO ============================================================ */ function Hero() { return (
— GOVERNANÇA COM INTELIGÊNCIA OPERACIONAL

Pare de gerir
seu negócio na

Receba o diagnóstico real do seu lucro todo dia no seu WhatsApp. Blindagem financeira, comissões auditadas e uma IA que atende leads e recupera clientes. Finalmente, um sistema de governança que faz o trabalho braçal por você.

{/* Right column — phone mockup */}
{/* Stats row */}
{[ [, "comissões auditadas"], ["24/7", "IA no WhatsApp"], [, "fechamento mensal"], ["Diário", "resumo executivo"], ].map(([num, lbl]) => (
{num}
{lbl}
))}
{/* Hero mockup — WhatsApp + dashboard schematic */}
); } function HeroPhoneMockup() { return (
{/* Ambient glow */}