/* Melhorias para o FAQ - Profissão Inteligente */

/* Estilos para o FAQ interativo */
.faq-item {
  background: rgba(13, 13, 13, 0.7);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 255, 242, 0.1);
  margin-bottom: 15px;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 255, 242, 0.2);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.question-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  display: flex;
  align-items: center;
}

.question-text i {
  color: var(--primary-accent);
  margin-right: 15px;
  font-size: 1.4rem;
}

.toggle-icon {
  color: var(--primary-accent);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 25px 0 65px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px 65px;
  opacity: 1;
}

/* Responsividade */
@media (max-width: 768px) {
  .question-text {
    font-size: 1.1rem;
  }
  
  .question-text i {
    font-size: 1.2rem;
    margin-right: 10px;
  }
  
  .faq-answer {
    padding: 0 20px 0 50px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 15px 50px;
  }
}

@media (max-width: 480px) {
  .question-text {
    font-size: 1rem;
  }
  
  .faq-question {
    padding: 15px 20px;
  }
}
