/* Contenedor del mapa con bordes redondos */
.mapa-box {
  width: 100%;
  max-width: 900px; /* opcional */
  margin: 40px auto; 
  border-radius: 20px;
  overflow: hidden;               /* NECESARIO para bordes redondos */
  box-shadow: 0 4px 25px rgba(0,0,0,0.2);
  position: relative;
}

/* Altura del mapa */
.mapa-box iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .mapa-box iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .mapa-box iframe {
    height: 280px;
  }
}