.zona-norte-empresarial {
  background: linear-gradient(to bottom, #f8fafc, #e0f2fe);
  padding:32px 20px 46px 20px;
  text-align: center;
  color: #003366;
  font-family: 'Poppins', sans-serif;
}

.zona-norte-empresarial .titulo-zona {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 15px;
  font-weight: 700;
}

.zona-norte-empresarial .intro-zona {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.servicios-zona {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.card-servicio {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-servicio:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card-servicio img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card-servicio h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #003366;
}

.card-servicio p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-zona {
  margin-top: 30px;
}

.btn-llamar {
  display: inline-block;
  background-color: #0077cc;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-llamar:hover {
  background-color: #005fa3;
}



/* 🎨 Estilos exclusivos de la sección del mapa */
.mapa-cerrajeros-section {
  background: #5889a994;
  padding: 40px 20px;
  text-align: center;
  margin-top: 150px;
}
.mapa-cerrajeros-section h2 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 10px;
}
.mapa-descripcion {
  color: #333;
  margin-bottom: 20px;
}
.mapa-buscador {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.mapa-buscador input {
  padding: 10px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.mapa-buscador button {
  padding: 10px 20px;
  background-color: #003366;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.mapa-filtros {
  margin-bottom: 15px;
}
.mapa-filtro-btn {
  margin: 5px;
  padding: 8px 15px;
  border: 1px solid #003366;
  border-radius: 6px;
  background: white;
  color: #003366;
  cursor: pointer;
}
.mapa-filtro-btn:hover {
  background: #003366;
  color: white;
}
.mapa-cta {
  margin-top: 20px;
}
.mapa-btn-llamar {
  display: inline-block;
  background: #0066cc;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.mapa-btn-llamar:hover {
  background: #004a99;
}



