function CTA() {
  return (
    <section style={{ padding: '24px 16px' }}>
      <div style={{
        position: 'relative', overflow: 'hidden', borderRadius: 36,
        background:
          'radial-gradient(60% 60% at 15% 20%, #FFFFFF 0%, rgba(255,255,255,0) 60%),' +
          'radial-gradient(80% 70% at 100% 100%, #4F6FB5 0%, rgba(79,111,181,0) 60%),' +
          'linear-gradient(135deg, #ADD5EB 0%, #E2F1F9 50%, #BCBCC7 100%)',
        padding: '120px 80px', textAlign: 'center'
      }}>
        <div style={{ display: 'inline-flex', padding: '6px 14px', borderRadius: 999, background: 'rgba(10,19,48,0.06)', fontFamily: 'Inter', fontSize: 12, fontWeight: 600, color: '#0A1330', letterSpacing: '0.12em', textTransform: 'uppercase', marginBottom: 28 }}>
          Para síndicos e construtoras
        </div>
        <h2 style={{ fontFamily: 'Saira', fontWeight: 300, fontSize: 92, lineHeight: 0.98, color: '#0A1330', letterSpacing: '-0.03em', margin: 0, maxWidth: 1000, marginInline: 'auto' }}>
          Deixe seu condomínio<br/>no azul.
        </h2>
        <p style={{ fontFamily: 'Inter', fontSize: 18, color: '#0A1330', opacity: 0.78, marginTop: 24, maxWidth: 560, marginInline: 'auto', lineHeight: 1.55 }}>
          Peça uma proposta agora. Em 12× no boleto e com onboarding em 14 dias.
        </p>
        <div style={{ display: 'flex', gap: 12, justifyContent: 'center', marginTop: 40 }}>
          <a href="#" style={{
            display: 'inline-flex', alignItems: 'center', gap: 8,
            background: '#0A1330', color: '#fff',
            padding: '16px 28px', borderRadius: 999, fontFamily: 'Inter', fontSize: 15,
            fontWeight: 600, textDecoration: 'none', letterSpacing: '0.01em'
          }}>
            Peça uma proposta
            <span style={{ display: 'inline-flex', width: 22, height: 22, borderRadius: 999, background: '#fff', color: '#0A1330', alignItems: 'center', justifyContent: 'center', fontSize: 12 }}>→</span>
          </a>
          <a href="#" style={{
            background: 'rgba(10,19,48,0.06)', color: '#0A1330',
            padding: '16px 28px', borderRadius: 999, fontFamily: 'Inter', fontSize: 15,
            fontWeight: 500, textDecoration: 'none'
          }}>Falar com vendas</a>
        </div>
      </div>
    </section>
  );
}
window.SemogCTA = CTA;
