/* Estilos generales */
body {
  font-family: "Overpass", sans-serif;
  background: url("/assets/img/domicilios/background.png") no-repeat center
    center;
  background-size: cover;
  margin: 0;
  padding: 0;
}

.fullscreen img {
  width: 100%;
  height: auto;
  display: block;
}
.linea-roja {
  height: 30px;
  background-color: #d32f2f;
}
.titulo-sd {
  width: 100%;
  height: auto;
}
/* Sección de servicio a domicilio */
.servicio-domicilio {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.servicio-domicilio .descripcion {
  font-size: 2.5rem;
  color: white;
  line-height: 1.6;
  text-align: center;
}

.servicio-domicilio .descripcion .resaltado {
  font-weight: bold;
  background-color: #ffeb3b; /* Fondo amarillo */
  color: #000000; /* Texto negro */
  padding: 0 5px; /* Espaciado interno */
  border-radius: 3px; /* Bordes redondeados */
}
.servicio-domicilio img {
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  max-width: 150%;
}

/* Sección de cobertura */
.coverage-section {
  padding: 60px 20px;
  border-radius: 10px;
}
.titulo-cobertura {
  max-width: 100%;
  height: auto;
}
.coverage-section h5 {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

.coverage-section ul {
  list-style-type: disc;
  padding-left: 20px;
  color: white;
}

.cobertura-percentage {
  font-size: 12rem;
  font-weight: bold;
  color: #f8cb3a;
  margin: 40px 0;
}
.cobertura-descripcion {
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
}

/* Sección de aplicaciones */
.apps-section {
  padding: 50px 20px;
  background: url("/assets/img/domicilios/Back-Apps.svg") no-repeat center
    center;
  background-size: cover;
  border-radius: 20px;
  max-width: 960px;
  min-height: 580px;
  margin: 0 auto;
  overflow: hidden;
}

.apps-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.apps-logos img {
  max-width: 100%;
  height: auto;
}

.apps-logos img:hover {
  transform: scale(1.1);
}

.titulo-apps {
  width: 350px;
}

.apps-text {
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 20px;
  text-align: start;
  padding: 10px 20px;
}

/* Responsividad */
@media (max-width: 768px) {
  .servicio-domicilio .descripcion {
    font-size: 1rem;
  }

  .cobertura-percentage {
    font-size: 2.5rem;
  }

  .titulo-apps {
    margin-bottom: 20px;
    max-width: 200px;
  }
  .titulo-sd {
    max-width: 100%;
  }
  .titulo-cobertura {
    max-width: 100%;
    height: auto;
  }
  .servicio-domicilio img {
    max-width: 100%; /* Limitar el ancho al 100% */
  }

  .coverage-section h5 {
    font-size: 1.2rem;
  }

  .coverage-section p {
    font-size: 1.2rem;
  }
  .apps-text {
    margin-bottom: 20px;
  }
}
