/* FAQ-001 */

.faq-hero {
  background: linear-gradient(135deg,var(--azul-profundo),#0F2A52);
  padding: 80px 24px 60px;
  margin-top: 68px;
}

.faq-hero-tag {
  background: rgba(232,84,10,0.15);
  color: #FF9A6C;
}

.faq-hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
}

.faq-section {
  padding-top: 48px;
}

.faq-container {
  max-width: 800px;
}

.faq-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question-btn {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
}

.faq-question-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--preto);
}

.faq-icon {
  flex-shrink: 0;
  transition: 0.3s;
  color: var(--laranja);
}

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

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}

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

.faq-answer-text {
  color: var(--cinza-texto);
  line-height: 1.8;
  font-size: 15px;
}

.faq-category-badge {
  margin-top: 12px;
}

.faq-cta {
  background: var(--azul-gelo);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin-top: 48px;
}

.faq-cta-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.faq-cta-desc {
  color: var(--cinza-texto);
  margin-bottom: 20px;
}

.faq-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-cta-link {
  display: inline-flex;
}
