/* Site footer — stacked logo, contact, link columns, gold hairline. */ function Footer({ onGo, onAll }) { const cols = [ ["Navegar", [["Início", () => onGo("top")], ["Imóveis", () => onGo("#imoveis")], ["Como funciona", () => onGo("#processo")], ["A Carina", () => onGo("#bio")], ["Depoimentos", () => onGo("#depoimentos")]]], ["Imóveis", [["Casas", onAll], ["Apartamentos", onAll], ["Terrenos", onAll], ["Ver portfólio", onAll]]] ]; return ( ); } const footTitle = { fontFamily: "var(--font-sans)", fontSize: 10.5, fontWeight: 500, letterSpacing: "0.2em", textTransform: "uppercase", color: "var(--accent)" }; const footLink = { background: "none", border: "none", textAlign: "left", padding: 0, cursor: "pointer", fontFamily: "var(--font-sans)", fontWeight: 300, fontSize: 15, color: "var(--ink-300)", transition: "color var(--dur) var(--ease)" }; const footContact = { display: "flex", alignItems: "center", gap: 10, fontFamily: "var(--font-sans)", fontWeight: 300, fontSize: 15, color: "var(--ink-200)", textDecoration: "none" }; Object.assign(window, { Footer });