/* Estilos para o mapa estático */
.world-map-container {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.world-map-static {
  width: 90%;
  height: auto;
  display: inline-block;
  background-color: #1a1a1a;
  margin: 0 auto;
}

.map-point {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #61ae91;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(97, 174, 145, 0.7);
}

.map-point::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 2px solid #61ae91;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .map-point {
    width: 8px;
    height: 8px;
  }
  
  .map-point::after {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 576px) {
  .map-point {
    width: 6px;
    height: 6px;
  }
  
  .map-point::after {
    width: 10px;
    height: 10px;
  }
}
