// js/components/widgets/orcamento-pipeline/PipelineHeader.jsx
// [Wave 38 v224.19 NUCLEAR EXTRACT 2026-05-24] Title + subtitle privacy-aware
// Extract LITERAL OrcamentoPipeline L122-129
//
// Props: isVendedor (bool)
// Deps: ZERO
(function(){
  'use strict';
  function PipelineHeader(props){
    const { isVendedor } = props;
    return (
      <div style={{ marginBottom: 18 }}>
        <div style={{ fontSize: 18, fontWeight: 800, color: '#1B2A4A', letterSpacing: '-0.02em' }}>
          🔄 Funil Pipeline
        </div>
        <div style={{ fontSize: 12, color: '#6B7280', marginTop: 2 }}>
          {isVendedor ? 'Seus orçamentos' : 'Pipeline da equipe'} · Convertidos dos últimos 30 dias
        </div>
      </div>
    );
  }
  window.ZNX = window.ZNX || {};
  window.ZNX.widgets = window.ZNX.widgets || {};
  window.ZNX.widgets['orcamento-pipeline'] = window.ZNX.widgets['orcamento-pipeline'] || {};
  window.ZNX.widgets['orcamento-pipeline'].PipelineHeader = PipelineHeader;
  // [Wave 38 marker v224.19] confirma PipelineHeader executado
  window.PipelineHeader_v224_19_wave38 = true;
})();
