.faq-item {
  background: #E4E6F2;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 105px;
  /*max-height: 105px; /*faz a faq não abir*/
  margin-bottom:30px;
}

.faq-question {
  padding: 26px 40px;
  font-size: 22px;
  color: #4D6873;
  /*max-width: 442px; /*adicionei isso*/
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon.spin {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #EEEFF6;
  padding: 0 25px;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}

.faq-answer.active {
  max-height: 655px; 
  padding: 18px 25px 45px 25px;
}
