/* ============================= */
/* SECCIÓN MAPA - URGENCIAS     */
/* ============================= */

.mapa-section {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0 !important;
  font-family: var(--font-primary);
  text-align: center;
}

.mapa-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.mapa-container h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 12px;
  position: relative;
}

.mapa-container h2::after {
  content: "";
  display: block;
  width: 65px;
  height: 3px;
  background: var(--secondary-color);
  margin: 8px auto 0;
  border-radius: 2px;
}

.mapa-container p {
  color: var(--text-color);
  font-size: 1.05rem;
  margin-bottom: 25px;
}

/* ============================= */
/* BLOQUE DE CONTACTO RÁPIDO     */
/* ============================= */

.contacto-rapido {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
  background: var(--bg-white);
  padding: 25px 30px;
  margin-bottom: 35px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow);
}

.contacto-item {
  flex: 1 1 280px;
  text-align: center;
}

.contacto-item h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contacto-item p {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0;
}

.contacto-item a {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contacto-item a:hover {
  color: var(--primary-color);
}

/* ============================= */
/* MAPA EMBEBIDO                 */
/* ============================= */

.mapa-embed {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 520px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px var(--shadow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.mapa-embed:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 28px var(--shadow-hover);
}

/* ============================= */
/* RESPONSIVO                    */
/* ============================= */

@media (max-width: 992px) {
  .contacto-rapido {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .contacto-item {
    margin-bottom: 10px;
  }

  .mapa-container h2 {
    font-size: 1.8rem;
  }

  .mapa-embed {
    height: 400px;
    max-width: 95%;
  }
}

@media (max-width: 576px) {
  .contacto-rapido {
    gap: 15px;
  }

  .contacto-item h4 {
    font-size: 1rem;
  }

  .contacto-item p {
    font-size: 0.95rem;
  }
}
