
@media (min-width: 768px) {
  svg {
    width: 80%;
  }
}
@media (min-width: 992px) {
  svg {
    width:auto;
  }
}
@media (min-width: 1200px) {
	svg{
    width: 80%;
  }
}

/*
.norte {
  fill: #63ab3f;
}
.nordeste {
  fill: #f0b541;
}
.centro-oeste {
  fill: #ffae70;
}
.sudeste {
  fill: #4fa4b8;
}
.sul {
  fill: #686f99;
}
*/
.norte {
  fill: #a0a0a0;
}
.nordeste {
  fill: #a0a0a0;
}
.centro-oeste {
  fill: #a0a0a0;
}
.sudeste {
  fill: #a0a0a0;
}
.sul {
  fill: #a0a0a0;
}
.atende{
  fill: var(--color-primary); /* #473bf0 */
  stroke: white;
  stroke-width: 3px;
  transition: fill 0.4s;  
}
/* Exemplo de animação, opcional */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes pulse {
            0% {
                transform: scale(1);
            }

            3% {
                transform: scale(1.1);
            }
        }
path.atende:hover {
	fill: #473bf0;
	transition: fill 0.4s;
}
/* Alfinete padrão */
.pin {
    /* Opcional: Ajuste a aparência do alfinete */
    opacity: 1;
    transition: opacity 0.3s ease;
	animation: bounce 1s infinite; /* Animação de exemplo, removível se não for necessário */
}

/* Estilo para os estados que atendem */
path.atende + .pin {
    opacity: 1; /* Visível quando o estado atende */
}
.atual{
  fill: #04a160;
  stroke: white;
  stroke-width: 3px;
  transition: fill 0.4s;
}
.atual:hover{
  fill: #243c6c;
  stroke: white;
  stroke-width: 3px;
  transition: fill 0.4s;
}
path {
  fill: #243c6c;
  stroke: white;
  stroke-width: 1px;
  transition: transform 0.2s ease-out;
}

path:hover {
  fill: #304860;
  stroke: white;
  stroke-width: 3px;
  transition: fill 0.4s, transform 0.2s ease-out;
  transform: translateY(-3px); /* Pequeno deslocamento para cima */
}

.tooltip {
  pointer-events: none;
  position: absolute;
  font-size: 18px;
  text-align: center;
  background: white;
  padding: 10px 15px;
  z-index: 5;
  height: 30px;
  line-height: 30px;
  margin: 0 auto;
  color: #21669e;
  border-radius: 5px;
  transform: translateX(-50%);
  display: none;
}
.tooltip.active {
  display: block;
}
.tooltip:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}

.map-legend {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-family: Arial, sans-serif;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.legend-color {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 4px;
}

.legend-color.atende {
    background-color: var(--color-primary); /* Verde para onde atende */
}

.legend-color.nao-atende {
    background-color: #243c6c; /* Azul para onde não atende */
}
.none{
	display:none;
}

