.title-white{
  color: white;
}

.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;
}

.section-servicios{
  background: #f5f8ff; padding: 80px 0; text-align: center;
}

.section-quienes-somos{
  background: #f5f8ff; padding: 80px 0;
}

.section-cta-emergencia{
  background: #015ffb; color: white; padding: 80px 0;
}

.section-testimonios{
  background: #f5f8ff; padding: 80px 0; text-align: center;
}

.section-galeria{
  background: #f5f8ff; padding: 25px 0; text-align: center;
}

.section-cta-final{
  background: #015ffb; color: white; padding: 60px 0;
}

/*hero portada*/
.hero-home {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Overlay oscuro para mejor legibilidad */
.hero-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.92) 0%, rgba(42, 82, 152, 0.88) 100%);
    z-index: 1;
}

.hero-home .container {
    position: relative;
    z-index: 3;
}

.title-white {
    font-size: 2.5rem; /* Tamaño de fuente grande */
    margin-bottom: 0.5rem; /* Espacio inferior */
}

.hero-home-h1 {
    font-weight: bold; /* Negrita para mayor énfasis */
}

p {
    font-size: 1.1rem; /* Tamaño de fuente moderado */
    line-height: 1.6; /* Interlineado para mejorar la legibilidad */
}

.img-plomero img {
    max-width: 100%; /* Responsivo */
    height: auto; /* Mantener proporciones */
    border-radius: 15px; /* Bordes redondeados */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Sombra elegante */
}

@media (max-width: 768px) {
    .hero-home {
        padding: 30px 15px; /* Ajuste de espaciado en móviles */
    }

    .title-white {
        font-size: 2rem; /* Tamaño de fuente más pequeño en móviles */
    }

    p {
        font-size: 1rem; /* Tamaño de fuente más pequeño en móviles */
    }
}
/*hero portada*/

/* Banner azul claro que contrasta pero armoniza */
.banner-black {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.banner-black .title-white {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-black {
        padding: 20px 15px;
    }

    .banner-black .title-white {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .banner-black {
        padding: 15px 10px;
    }

    .banner-black .title-white {
        font-size: 1.4rem;
    }
}
/*banner black*/