/* Evolucao de Vendas — visual profissional */
.evo-pro-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px !important;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04) !important;
  border: 1px solid #e8eef5 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}
.evo-pro-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #059669, #34d399 50%, #2dd4bf);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
  z-index: 2;
}
.evo-pro-card .evo-pro-svg {
  filter: drop-shadow(0 8px 16px rgba(5, 150, 105, 0.12));
}
.evo-pro-card .evo-pro-line {
  filter: drop-shadow(0 2px 4px rgba(5, 150, 105, 0.35));
  stroke-linecap: round;
  stroke-linejoin: round;
}
.evo-pro-card .evo-pro-area {
  opacity: 1;
}
.evo-pro-card .evo-pro-dot {
  transition: r 0.2s ease, filter 0.2s ease, stroke-width 0.2s ease;
  cursor: pointer;
}
.evo-pro-card .evo-pro-dot.evo-active {
  filter: drop-shadow(0 4px 10px rgba(5, 150, 105, 0.55));
}
.evo-pro-card .evo-pro-hit {
  cursor: pointer;
}
.evo-pro-tooltip {
  position: absolute;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -120%) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease;
  background: #0f172a;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.28),
    0 4px 10px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
.evo-pro-tooltip.evo-show {
  opacity: 1;
  transform: translate(-50%, -130%) scale(1);
}
.evo-pro-tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #0f172a;
}
.evo-pro-tooltip .evo-tip-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.evo-pro-tooltip .evo-tip-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #6ee7b7;
  font-variant-numeric: tabular-nums;
}
.evo-pro-crosshair {
  stroke: #94a3b8;
  stroke-width: 1;
  stroke-dasharray: 3 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.evo-pro-crosshair.evo-show { opacity: 0.55; }
.evo-pro-glow-ring {
  fill: none;
  stroke: #34d399;
  stroke-width: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, r 0.2s ease;
}
.evo-pro-glow-ring.evo-show { opacity: 0.85; }
