.qualidade-servico {
  position: relative;
  background: url('../assets/foto.jpg') center center / cover no-repeat fixed;
  color: white;
  padding: 60px 20px 120px;
  text-align: center;
  height: 45vh;
  z-index: 1;
}

.overlay-qualidade-servico {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.74);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.texto-qualidade {
  z-index: 2;
}

.titulo-qualidade {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 30px;
}

.sub-titulo-qualidade {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cards-container {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 40px;
  z-index: 2;
  justify-content: center;
  flex-wrap: nowrap;
}

.card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 280px;
  text-align: center;
  flex-shrink: 0;
}

.card img {
  width: 80px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.card p {
  font-size: 0.9rem;
  color: #444;
}


@media (max-width: 1024px) {
  .qualidade-servico {
    background: url('../assets/foto.jpg') top center / cover no-repeat;
    height: 70vh;
    padding-bottom: 70px;
    overflow: hidden;
  }

  .cards-container {
    display: none;
  }

  .titulo-qualidade {
    font-size: 1.8rem;
    text-align: left;
    padding: 3% 3rem;
  }

  .sub-titulo-qualidade {
    font-size: 18px;
    text-align: left;
    padding: 3% 3rem;
    margin-bottom: 50px;    
  }

  .carousel-item .card-mobile {
    margin: auto;
    width: 90%;
    padding: 10px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .card-mobile {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 280px;
    text-align: center;
    flex-shrink: 0;  
  }

  .card-mobile img {
    width: 60px;
    margin-bottom: 15px;
  }

  .card-mobile h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: black;

  }

  .card-mobile p {
    font-size: 0.8rem;
    color: #444;
  }

}