.faq {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faq-item {
  background-color: #131212;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
}

.faq-item h2 {
  margin: 0;
  font-size: 18px;
  cursor: pointer;
}

.faq-item h2,
.faq-item p {
  padding-left: 22px;
}

.faq-item .seta {
  position: absolute;
  left: 12px;
  top: 30px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("/assets/img/Seta-Direita.png");
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.5s ease-in-out;
}

.faq-item.aberto .seta {
  background-image: url("/assets/img/Seta-Baixo.png");
}

.faq-item p {
  margin: 10px 0 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.5s ease-in-out;
}

.faq-item.aberto p {
  max-height: 400px;
  opacity: 1;
}
