/* global React */ const { useEffect } = React; function Hero({ variant = 'editorial' }) { useEffect(() => { const onScroll = () => { const title = document.querySelector('.hero-title'); if (title) title.style.transform = `translateY(${window.scrollY * -0.08}px)`; const lead = document.querySelector('.hero-lead'); if (lead) lead.style.opacity = Math.max(0, 1 - window.scrollY / 500); }; window.addEventListener('scroll', onScroll, { passive: true }); return () => window.removeEventListener('scroll', onScroll); }, []); return (
Reformas Integrales · Málaga y Costa del Sol

Tu{' '} hogar{' '} reformado{' '} por expertos.

Reformas con presupuesto cerrado, sin compromiso... sin sorpresas.

951 23 93 69 · Habla con un experto Pedir presupuesto gratis →
Sin compromiso · Respuesta en menos de 2 h
Reseñas Google
+6 años En Málaga
24-48 h Presupuesto
{Array.from({ length: 2 }).map((_, k) => ( FORMALIDAD · TRANSPARENCIA · ATENCIÓN PERSONALIZADA · GARANTÍA · PLAZOS CERRADOS · ))}
); } window.Hero = Hero;