.mapa-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgb(244,241,232);
}

.mapa-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Capa beige que deja el centro resaltado */

.mapa-efecto {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient( circle at 50% 50%, transparent 0%, transparent 14%, rgba(244, 241, 232, 0.20) 24%, rgba(244, 241, 232, 0.72) 58%, rgba(244, 241, 232, 0.92) 100% );
  z-index: 2;
}

/* Círculo elegante resaltando el lugar */

.mapa-pulso {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(173, 132, 62, 0.95);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(173, 132, 62, 0.75), 0 0 38px rgba(173, 132, 62, 0.35);
  pointer-events: none;
  z-index: 3;
  animation: pulsoMapa 2s infinite ease-out;
}

@keyframes pulsoMapa {
  0% {
    transform: translate(-50%, -50%) scale(0.75);
    opacity: 1;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.45);
    opacity: 0.25;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .mapa-wrapper {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .mapa-pulso {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .mapa-efecto {
    background: radial-gradient( circle at 50% 50%, transparent 0%, transparent 17%, rgba(244, 241, 232, 0.30) 30%, rgba(244, 241, 232, 0.78) 65%, rgba(244, 241, 232, 0.94) 100% );
  }
}

