.title-white{
  color: white;
}

.img-plomero {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  margin-top: 20px;
}

.img-plomero img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.service-city-links {
  padding: 60px 20px;
  background-color: #f5f7fa;
}

/*btn todos los servicios*/
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #004dff;
  color: #ffffff;
  margin-bottom: 20px;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #00588b;
  color: #ffffff;
  text-decoration: none;
}
/*BTN WHATS*/
.whatsapp-call-button {
  display: inline-block;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #25D366;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-call-button:hover,
.whatsapp-call-button:focus {
  background-color: #1ebe5b;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #fff;
}

.phone-icon {
  margin-right: 8px;
  vertical-align: middle;
}

.mb-20{
  margin-bottom: 20px;
}
/*servicios por ciudad*/
.service-block {
  margin-bottom: 40px;
}

.service-title {
  font-size: 1.5rem;
  color: #00335A;
  margin-bottom: 20px;
}

/* Solo grid en los links */
.service-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.service-links a {
  display: block;
  padding: 10px 15px;
  background-color: #f5f8fa;
  border: 1px solid #e0e6ed;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.service-links a:hover {
  background-color: #e6f2ff;
  color: #005377;
}

.service-links a h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #006699;
}

@media (min-width: 576px) {
  .service-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .service-links {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .service-links {
    grid-template-columns: repeat(4, 1fr);
  }
}
/*end servicios por ciudad*/

.homeBTN{
  display: inline-block; margin-top: 20px; padding: 12px 25px; background: #25D366!important; color: white; border-radius: 30px; font-weight: bold; text-decoration: none;
}