/* ════════════════════════════════════════════════════════════════════
   HEADER EXECUTIVO — Dashboard
   ════════════════════════════════════════════════════════════════════ */

.cp-hexec{
  background:linear-gradient(135deg, rgba(167,139,250,.08), rgba(34,211,238,.05));
  border:1px solid rgba(167,139,250,.25);
  border-radius:14px;
  padding:18px 22px;
  margin-bottom:18px;
  position:relative;
  overflow:hidden;
}

[data-theme="light"] .cp-hexec{
  background:linear-gradient(135deg, rgba(124,58,237,.05), rgba(6,182,212,.04));
}

.cp-hexec::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:2px;
  background:linear-gradient(90deg, #a78bfa, #ec4899, #22d3ee);
}

.cp-hexec-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.cp-hexec-saudacao{
  font-family:var(--dp);
  font-weight:800;
  font-size:20px;
  color:var(--tx);
  letter-spacing:-0.01em;
  margin-bottom:3px;
}

.cp-hexec-data{
  font-family:var(--mo);
  font-size:11px;
  color:var(--t3);
}

.cp-hexec-toggle{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(167,139,250,.2);
  border-radius:8px;
  width:32px;
  height:32px;
  cursor:pointer;
  color:var(--t2);
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .15s;
  flex-shrink:0;
}
.cp-hexec-toggle:hover{
  background:rgba(167,139,250,.15);
  color:var(--tx);
}

.cp-hexec-titulo{
  font-family:var(--fn);
  font-size:12px;
  color:var(--t2);
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:700;
  margin-bottom:10px;
}

.cp-hexec-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  margin-bottom:12px;
}

@media (max-width:600px){
  .cp-hexec-grid{
    grid-template-columns:1fr 1fr 1fr;
    gap:6px;
  }
}

.cp-hexec-item{
  background:rgba(0,0,0,.2);
  border:1px solid rgba(167,139,250,.15);
  border-radius:10px;
  padding:12px 14px;
  text-align:center;
  transition:transform .15s;
}

[data-theme="light"] .cp-hexec-item{
  background:rgba(255,255,255,.5);
}

.cp-hexec-item:hover{
  transform:translateY(-1px);
}

.cp-hexec-novos{
  border-left:3px solid #10b981;
}
.cp-hexec-cancelados{
  border-left:3px solid #f43f5e;
}
.cp-hexec-saldo{
  border-left:3px solid #a78bfa;
}

.cp-hexec-num{
  font-family:var(--dp);
  font-weight:800;
  font-size:28px;
  color:var(--tx);
  line-height:1;
  margin-bottom:4px;
}

@media (max-width:600px){
  .cp-hexec-num{
    font-size:22px;
  }
}

.cp-hexec-novos .cp-hexec-num{ color:#10b981; }
.cp-hexec-cancelados .cp-hexec-num{ color:#f43f5e; }

.cp-hexec-lb{
  font-family:var(--fn);
  font-size:10.5px;
  color:var(--t3);
  text-transform:uppercase;
  letter-spacing:.04em;
  font-weight:600;
  margin-bottom:4px;
}

.cp-hexec-mrr{
  font-family:var(--mo);
  font-size:11px;
  color:var(--t2);
  font-weight:600;
}

.cp-hexec-comp{
  text-align:center;
  padding:6px 0;
  border-top:1px dashed rgba(167,139,250,.15);
  border-bottom:1px dashed rgba(167,139,250,.15);
  margin-bottom:10px;
}

.cp-hexec-alertas{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:8px;
}

.cp-hexec-alerta{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:6px 10px;
  background:rgba(245,158,11,.08);
  border:1px solid rgba(245,158,11,.25);
  border-radius:8px;
  color:#f59e0b;
  font-size:11.5px;
  font-family:var(--fn);
  font-weight:600;
  cursor:pointer;
  transition:background .15s;
}
.cp-hexec-alerta:hover{
  background:rgba(245,158,11,.15);
}

.cp-hexec-alerta-vermelho{
  background:rgba(244,63,94,.08);
  border-color:rgba(244,63,94,.25);
  color:#f87171;
}
.cp-hexec-alerta-vermelho:hover{
  background:rgba(244,63,94,.15);
}
