.map-container {
  padding: 0 0.8rem;
  position: relative;
  display: inline-block;
}
.map-container img {
  width: 100%;
}
.map-container .point {
  cursor: pointer;
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 rgb(255 255 255 / 40%);
  animation: pulse 3s infinite;
}
.map-container .point:hover {
  animation: none;
  transform: translate(-50%, -50%) scale3D(1.35, 1.35, 1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.map-container .sao-paulo {
  top: 74%;
  right: 29%;
}
.map-container .curitiba {
  top: 80%;
  right: 34%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(0, 172, 193, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 172, 193, 0);
  }
}

#mapa {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background-color: transparent;
}

#mapa .elemento {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.point-earth {
  width: 500px;
  height: 500px;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-earth canvas {
  width: 100% !important;
  height: 100% !important;
  opacity: 1;
  mix-blend-mode: screen;
  background: transparent;
}

@media (max-width: 990px) {
  .point-earth {
    width: 100%;
    height: auto;
    margin: 30px auto;
    margin-top: 32px;
  }
}

@media (max-width: 990px) and (min-width: 768px) {
  .point-earth {
    width: 100%;
    height: auto;
    margin: 30px auto;
    margin-top: 32px;
  }
}
