// Logo "Simulador Docente" — libro abierto + check, hecho ad-hoc. // Devuelve un componente React; sólo formas geométricas simples (rect/path). window.Logo = function Logo({ size = 28, color = 'currentColor', accent = null, withWordmark = true, dark = false }) { const ac = accent || color; const wm = dark ? '#fff' : '#0B2545'; return ( {withWordmark ? ( Simulador Docente ) : null} ); };