function About() { const companies = ['Hotmart','PicPay','SumUp','Coca-Cola','Sprite','Pizza Hut','Crystal Water','Kibon','Rexona','Ben & Jerry\'s','Yamaha Motors','Vivo','Sadia','Tim','Globo.com','Latam','Tintas Coral','FGV','Inhotim','Infraero']; const headRef = React.useRef(null); const [headSize, setHeadSize] = React.useState(null); const { isMobile } = useViewport(); /* ── fit "REPERTÓRIO" to 100% of available width, single line ── */ React.useEffect(() => { const h2 = headRef.current; if (!h2) return; function fit() { const avail = h2.clientWidth; if (!avail) return; const m = document.createElement('span'); m.style.cssText = 'position:absolute;left:-9999px;top:-9999px;visibility:hidden;white-space:nowrap;' + 'font-family:HelveticaCompressed,"Arial Narrow",Arial,sans-serif;font-weight:700;font-size:200px;' + 'letter-spacing:-0.02em;text-transform:uppercase;'; m.textContent = 'REPERTÓRIO'; document.body.appendChild(m); const w = m.offsetWidth; document.body.removeChild(m); if (!w) return; // 0.5% safety so the single (nowrap) line never overflows the container setHeadSize((200 * avail / w * 0.995) + 'px'); } fit(); const ro = new ResizeObserver(fit); ro.observe(h2); if (document.fonts && document.fonts.ready) document.fonts.ready.then(fit); [120, 400, 900, 1600].forEach((t) => setTimeout(fit, t)); window.addEventListener('resize', fit); return () => { ro.disconnect(); window.removeEventListener('resize', fit); }; }, []); return (
{/* ── Section header ── */}
Sobre
{/* ── Name heading ── */}

REPERTÓRIO

{/* ── Photo + Bio ── */}
{/* Photo */}
Lucas Queiroz
{/* Bio */}

Consultoria e liderança de marketing criativo com mais de 20 anos de carreira em agências de publicidade, fintechs e grandes empresas e startups globais.

Atuação flexível e sob demanda, cobrindo desde a concepção do briefing criativo até a entrega final, com equipes enxutas e IA integrada ao processo.

{/* Education */}

Formação

{[ { title: 'Inglês Avançado / Fluente', sub: 'Conversação e Escrita' }, { title: 'Espanhol Intermediário', sub: 'Conversação e Escrita' }, { title: 'Bacharel em Comunicação Social', sub: 'UNA, Publicidade e Propaganda' }, { title: 'Direção de Arte Avançada II', sub: 'ESPM' }, { title: 'IDEI.A PRO', sub: 'Curso Creative Punch' }, { title: 'Image / Video Creator PRO', sub: 'Human Academy' }, ].map(e => (
{e.title} {e.sub}
))}
{/* Awards */}

Reconhecimentos

{[ { title: 'Lusófonos', sub: 'Bronze — TV Ad' }, { title: 'Effie Brasil', sub: 'Finalist' }, { title: 'TikTok For Business', sub: 'Case Study' }, { title: 'Cannes Lions Festival', sub: 'Shortlist — Cyber' }, { title: 'New York Festivals', sub: 'Finalist — Print' }, { title: 'Clube de Criação Brasil', sub: 'Bronze — Digital' }, { title: 'El Ojo de Iberoamérica', sub: 'Bronze — Print' }, { title: 'Maximídia', sub: 'Best Use of Social Media' }, { title: 'B9 GrandPrix', sub: 'Silver' }, { title: 'Prêmio Abril de Publicidade', sub: 'Silver' }, { title: 'Luerzer\'s Archive', sub: '4 issues · 9 ads' }, { title: 'Best Ads on TV', sub: '4 Best Ads of the Week — 2 Print, 2 Digital' }, ].map(e => (
{e.title} {e.sub}
))}
{/* Contact strip */}
{[ { href: 'mailto:lucasqueiroz@gmail.com', label: 'lucasqueiroz@gmail.com' }, { href: 'https://linkedin.com/in/lucasqueiroz', label: 'LinkedIn ↗', target: '_blank' }, { href: 'https://wa.me/5511975514667?text=Quero%20trabalhar%20com%20a%20LSQ.', label: '+55 11 97551 4667', target: '_blank' }, ].map(l => ( e.currentTarget.style.color='#1D1D1B'} onMouseLeave={e=>e.currentTarget.style.color='#9A9A97'} >{l.label} ))}
{/* ── Clients strip ── */}

Marcas atendidas

{companies.map((c, i) => ( {c} {i < companies.length - 1 && ( · )} ))} & More
); } Object.assign(window, { About });