// ====================== POP-UP DE CHAMADA (somente home) ====================== function PromoPopup() { const KEY = "jgf_promo_popup_v1"; const [open, setOpen] = React.useState(false); React.useEffect(() => { let seen = false; try { seen = sessionStorage.getItem(KEY) === "1"; } catch (e) {} if (seen) return; const t = setTimeout(() => setOpen(true), 1600); return () => clearTimeout(t); }, []); const close = () => { setOpen(false); try { sessionStorage.setItem(KEY, "1"); } catch (e) {} }; React.useEffect(() => { if (!open) return; const h = (e) => { if (e.key === "Escape") close(); }; document.addEventListener("keydown", h); return () => document.removeEventListener("keydown", h); }, [open]); if (!open) return null; return (
e.stopPropagation()} className="jgf-promo-card" style={{ position: "relative", width: "100%", maxWidth: 440, borderRadius: 18, overflow: "hidden", boxShadow: "0 30px 70px rgba(0,0,0,.45)", animation: "heroUp .35s cubic-bezier(.2,.9,.3,1) both" }}> Faltou, Zapeou, chegou... WhatsApp 81 3127-0070 Chamar no WhatsApp
); } Object.assign(window, { PromoPopup });