/* Estilos para o mapa estático baseado na referência */
.world-map-container {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  background-color: #1a1a1a;
  padding: 20px;
}

.world-map-static {
  width: 100%;
  height: auto;
  display: block;
  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;
  }
}

.map-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 3rem;
  text-align: center;
}

.map-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #61ae91;
  margin-bottom: 0.5rem;
}

.map-stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .map-point {
    width: 8px;
    height: 8px;
  }
  
  .map-point::after {
    width: 12px;
    height: 12px;
  }
  
  .map-stat-number {
    font-size: 2.5rem;
  }
  
  .map-stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .map-point {
    width: 6px;
    height: 6px;
  }
  
  .map-point::after {
    width: 10px;
    height: 10px;
  }
  
  .map-stat-number {
    font-size: 2rem;
  }
  
  .map-stat-label {
    font-size: 0.8rem;
  }
}
