// whatsapp.jsx — WhatsApp button + URL builder const WA_NUMBER = "5567991700143"; const waUrl = (msg) => `https://wa.me/${WA_NUMBER}?text=${encodeURIComponent(msg)}`; function WhatsAppButton({ size = "xl", label = "Falar no WhatsApp", subtitle, message = "Olá Desiré! Tenho interesse nos lotes do Primavera 2.", ariaLabel, }) { const cls = "wa-btn" + (size === "xl" ? " wa-btn--xl" : size === "lg" ? " wa-btn--lg" : ""); return ( {label} {subtitle && {subtitle}} ); } window.WA_NUMBER = WA_NUMBER; window.waUrl = waUrl; window.WhatsAppButton = WhatsAppButton;