.faq-section {
  background: radial-gradient(circle at top, #0c0c1f, #050510);
  max-width: 100%;
  margin: auto;
}

.faq-container {
  display: grid;
  gap: 16px;
}

/* ITEM */
.faq-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.2);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
  transition: all .4s ease;
}

/* PERGUNTA */
.faq-question {
  width: 100%;
  padding: 22px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ÍCONE */
.faq-question .icon {
  font-size: 1.6rem;
  color: #7c3aed;
  transition: transform .4s ease;
}

/* RESPOSTA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: #cfcff3;
  line-height: 1.6;
  font-size: .95rem;
  transition: max-height .5s ease, padding .4s ease;
}

/* ATIVO */
.faq-item.active {
  box-shadow: 0 0 30px rgba(124,58,237,.25);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 22px 22px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* HOVER */
.faq-item:hover {
  border-color: #7c3aed;
}
