/* ─────────────────────────────────────────────────────────────────────────────
   MARKETING HERO VISUAL — mcHeroVisual.css
   Campaign Builder + Delivery Analytics canvas
   Depende das variáveis do marketing.css (.marketing-campaign-page)
───────────────────────────────────────────────────────────────────────────── */

.mchv-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mchv-panel {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1e3249;
  display: flex;
  flex-direction: column;
}

.mchv-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: #0f1e2e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.mchv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mchv-dot--r {
  background: #ff5f57;
}
.mchv-dot--y {
  background: #febc2e;
}
.mchv-dot--g {
  background: #28c840;
}

.mchv-bar-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 6px;
  font-family: "Fira Code", "Consolas", monospace;
}

.mchv-panel canvas {
  display: block;
  width: 100%;
  flex: 1;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .mchv-wrap {
    grid-template-columns: 1fr;
  }
  .mchv-panel:last-child {
    display: none;
  }
}
