/* ========================================================= Secciones top (rev. usuario): - Hero con H1 "Inmobiliaria en Torrevieja y Orihuela Costa" - HousePanel: panel forma de casa - BlueBubble: bocadillo azul "¿Cuánto vale tu vivienda?" ========================================================= */ const HERO_BG = "https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80"; /* ---------- Hero ---------- */ function Hero() { return (
{t("home.hero.bg_alt")}
{t("home.hero.overline")}

{t("home.hero.sub")}

); } function SearchBar() { return (
{t("home.searchBar.label_price")}
{t("home.searchBar.placeholder_select")}
{t("home.searchBar.label_zone")}
Torrevieja
{t("home.searchBar.label_type")}
{t("home.searchBar.type_any")}
); } /* ---------- Sec 2: HousePanel (imagen real de casa con foto + texto) ---------- */ function HousePanel() { const [videoOpen, setVideoOpen] = useState(false); const ref = useRef(null); const [visible, setVisible] = useState(false); useEffect(() => { const el = ref.current; if (!el || visible) return; const obs = new IntersectionObserver((entries) => { entries.forEach((e) => { if (e.isIntersecting) { setVisible(true); obs.disconnect(); } }); }, { threshold: 0.18 }); obs.observe(el); return () => obs.disconnect(); }, [visible]); return (
{t("home.housePanel.img_alt")}
{t("home.housePanel.google_badge_alt")}
{t("home.housePanel.eyebrow")}

{t("home.housePanel.intro")}

{t("home.housePanel.bullet_1")}
{t("home.housePanel.bullet_2")}
{t("home.housePanel.bullet_3")}

{videoOpen && setVideoOpen(false)} />}
); } /* ---------- VideoModal: YouTube popup ---------- */ function VideoModal({ videoId, onClose }) { useEffect(() => { const onKey = (e) => {if (e.key === "Escape") onClose();}; document.body.style.overflow = "hidden"; window.addEventListener("keydown", onKey); return () => { document.body.style.overflow = ""; window.removeEventListener("keydown", onKey); }; }, [onClose]); return (
e.stopPropagation()}>