.limpieza1 {
  position: relative; /* Necesario para ubicar el fondo */
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Para que el fondo no se salga */
}

.limpieza1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/banner/1.jpg);
  background-size: cover;
  background-position: left;
  opacity: 0.3; /* Ajusta aquí la opacidad (0.1 a 1) */
  z-index: -1; /* Envía la imagen detrás del texto */
}

.limpieza2 {
  position: relative; /* Necesario para ubicar el fondo */
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Para que el fondo no se salga */
}

.limpieza2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.3)),url(../img/banner/3.jpg);
  background-size: cover;
  background-position: bottom;
  opacity: 0.3; /* Ajusta aquí la opacidad (0.1 a 1) */
  z-index: -1; /* Envía la imagen detrás del texto */
}

.limpiezaElectricos {
  position: relative; /* Necesario para ubicar el fondo */
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Para que el fondo no se salga */
}

.limpiezaElectricos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(173, 216, 230, 0.5), rgba(173, 216, 230, 0.5)), url(../img/banner/borneselc.jpg);
  background-size: cover;
  background-position: bottom;
  opacity: 0.3; /* Ajusta aquí la opacidad (0.1 a 1) */
  z-index: -1; /* Envía la imagen detrás del texto */
}

.limpiezaCarteles {
  position: relative; /* Necesario para ubicar el fondo */
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Para que el fondo no se salga */
}

.limpiezaCarteles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/banner/carteles.png);
  background-size: cover;
  background-position: bottom;
  opacity: 0.3; /* Ajusta aquí la opacidad (0.1 a 1) */
  z-index: -1; /* Envía la imagen detrás del texto */
}
