// ─── SECTIONS A: Nav, Hero, Ticker, Diagnóstico ───────────────────────── const { useEffect: useEffA, useState: useStA, useRef: useRefA } = React; // ─── NAV ─────────────────────────────────────────────────────────────── function Nav() { const [scrolled, setScrolled] = useStA(false); const [active, setActive] = useStA(""); const [drawerOpen, setDrawerOpen] = useStA(false); useEffA(() => { const ids = ["especialidades", "metodo", "resultados", "joel", "garantia", "contacto"]; const onScroll = () => { setScrolled(window.scrollY > 32); const y = window.scrollY + window.innerHeight * 0.35; let found = ""; for (const id of ids) { const el = document.getElementById(id); if (!el) continue; if (y >= el.offsetTop && y <= el.offsetTop + el.offsetHeight) { found = id; break; } } setActive(found); }; window.addEventListener("scroll", onScroll, { passive: true }); onScroll(); return () => window.removeEventListener("scroll", onScroll); }, []); useEffA(() => { document.body.style.overflow = drawerOpen ? "hidden" : ""; return () => { document.body.style.overflow = ""; }; }, [drawerOpen]); const links = [ { id: "especialidades", label: "Especialidades" }, { id: "resultados", label: "Resultados" }, { id: "testimonios", label: "Testimonios" }, { id: "joel", label: "Quiénes somos" }, { id: "garantia", label: "Garantía" }, ]; const go = (id) => { setDrawerOpen(false); setTimeout(() => { const el = document.getElementById(id); if (el) window.scrollTo({ top: el.getBoundingClientRect().top + window.scrollY - 56, behavior: "smooth" }); }, 80); }; return ( <> {/* Mobile drawer */}
setDrawerOpen(false)} />
Legalketing
{links.map(l => ( { e.preventDefault(); go(l.id); }}> {l.label} ))}
+50 despachos · Sin permanencia · Resultados sem. 1 Hablar ahora
); } // ─── HERO ────────────────────────────────────────────────────────────── function Hero() { return (
); } // ─── REVIEWS STRIP ───────────────────────────────────────────────────── function ReviewsStrip() { return (
{Array(5).fill(0).map((_, i) => ( ))} 4.9/5 +50 despachos confían en Legalketing 59% tasa de cierre media. El doble que el sector. Ver casos de éxito
); } // ─── TICKER ──────────────────────────────────────────────────────────── function Ticker() { return (