#depoimentos {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top:200px;
}

.titulo-depoimentos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.titulo-depoimentos h2 {
  font-size: 50px;
  font-weight: normal;
  color: white;
}

.container-retangulos-depoimentos {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.icone-suit {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  align-items: center;
}

.icone-suit img {
  width: 50px;
  height: 50px;
}

.retangulo-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 350px;
  height: 550px;
  background: linear-gradient(to bottom, #2a2829, #000000);
  border: 1px solid white;
  position: relative;
  margin-top: 220px;
}

.retangulo-info p {
  width: 300px;
  height: 360px;
  margin-top: 20px;
  font-size: 25px;
  color: white;
  text-align: justify;
}

.retangulo-info h3 {
  color: white;
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}

.foto-retangulo img {
  width: 220px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -100%;
}

.logo-inferior-depoimentos {
  margin-top: 35px;
}

.logo-inferior-depoimentos h3 {
  background: linear-gradient(to right, #ffffff 50%, #544f51);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Berkshire Swash", serif;
  font-size: 40px;
}



@media (min-width: 1366px) and (max-width: 1599px) {

  #depoimentos{
    margin-top: 100px;
  }
  .titulo-depoimentos h2{
    font-size:45px
  }

  .foto-retangulo img {
    width: 150px;
    height: 150px;
  }

  .retangulo-info{
    margin-top:150px;
    height:390px;
    width:330px;
  }

  .retangulo-info p{
    font-size:20px;
  }

  .icone-suit img{
    width: 40px;
    height: 40px;
  }

  .depoimentos{
    margin-top:50px;
  }

  .nome-depoimento{
    margin-top:-130px;
  }

  .logo-inferior-depoimentos{
    margin-top: -9px;
  }

}

@media (min-width:1600px){
 .depoimentos{
  margin:0;
 }
}