.faq-category-description{
  width: 70%;
  margin-bottom: 40px;
}
.faq-accordion{
    padding-left: 0.5em;
}
.faq-category-block {
  margin-bottom: 60px;
}

.faq-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1em;
}

button.faq-question {
  width: 100%;
  background-color: transparent !important;
  border: none;
  padding: 15px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333333 !important;
  transition: background-color 0.3s ease;
}

button.faq-question:hover {
  background-color: #f9f9f9 !important;
  color: #333333 !important;
}

button.faq-question:focus {
  outline: none !important;
  box-shadow: none !important;
}

.faq-toggle-icon img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 15px;
  background-color: #f9f9f9;
  display: none;
}

.faq-answer.open {
  display: block;
}

/* Ícone de menos quando ativo */
.faq-question.active .faq-toggle-icon img {
  content: url("https://sustax.earth/wp-content/uploads/2025/09/Minus.svg");
}

