.map-container {
  max-width: 700px;
  margin: auto;
  position: relative;
}

.map-container svg {
  width: 100%;
  height: auto;
}

/* estados */
.map-container path {
  fill: var(--accent-color);
  stroke: #ffffff;
  stroke-width: 1.2;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* hover */
.map-container path:hover {
  fill: var(--terceary-color);
  transform: translateY(-1px);
}

/* estado ativo */
.map-container path.active,
.map-container .active path {
  fill: var(--terceary-color);
}

/* tooltip */
.tooltip-mapa {
  position: absolute;
  background: #e30613;
  color: #fff;
  padding: 14px 16px;
  border-radius: 6px;
  display: none;
  transform: translate(-50%, calc(-100% + -10px));
  font-size: 14px;
  max-width: 240px;
  z-index: 10;
  box-shadow: 0 12px 28px rgba(2, 13, 25, 0.22);
  pointer-events: none;
}

.tooltip-mapa::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 16px solid #e30613;
  transform: translateX(-50%);
}

.tooltip-mapa strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
