/* Estilos para os acordeões FAQ */
.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item__question {
  background-color: var(--color-bg-secondary);
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}

.faq-item__question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-item__question--active {
  background-color: rgba(16, 185, 129, 0.1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-item__icon {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__question--active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  background-color: var(--color-bg-secondary);
  padding: 0 20px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.faq-item__answer-content {
  padding: 0 0 20px;
  color: var(--color-text-secondary);
}
