.contenedor-testimonios {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #151515;
  padding: 50px;
  gap: 30px;
}

.contenedor-testimonios h1 {
  font-size: 2rem;
  padding: 10px;
  color: #fff;
}

.contenedor-cards-testimonios {
  display: flex;
  justify-content: center;
}

.swiper {
  max-width: 1000px;
}

.card-testimonio{
  display: flex;
  gap: 30px;
  padding: 40px;
  border-radius: 40px;
  background-color:  #DDE6ED;
}

.card-testimonio img{
  width: 200px;
  border-radius: 50%;
  border: 8px solid #171717;
}

.card-testimonio p{
 text-align: center;
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 
}
@media only screen and (max-width: 999px) {
  .swiper {
    max-width: 300px;
  }
  .card-testimonio{
    flex-direction: column;
    height: 450px;
  }

}





