
/* ESTILOS EXATOS COMO TX FUEL COM CORES SISGP */
.faq-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border: 1px solid #e9ecef;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  text-align: left;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
  color: #11AEDB;
}

.faq-question.active {
  background: #f0f9ff;
  color: #11AEDB;
  border-bottom: 1px solid #e3f2fd;
}

.faq-text {
  flex: 1;
  text-align: left;
}

.faq-arrow {
  transition: transform 0.3s ease;
  color: #11AEDB;
  font-size: 16px;
  margin-left: 15px;
}

.faq-question.active .faq-arrow {
  transform: rotate(180deg);
  color: #11AEDB;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: white;
}

.faq-answer.active {
  max-height: 1000px;
}

.faq-content {
  padding: 0 30px 30px 30px;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.faq-answer.active .faq-content {
  opacity: 1;
}

.faq-content p {
  margin-bottom: 16px;
  color: #6c757d;
  line-height: 1.6;
  font-size: 16px;

}

.faq-content p:last-child {
  margin-bottom: 0;
}

.section-divider {
  background: #11AEDB;
  height: 3px;
  width: 80px;
  margin: 0 auto;
  border-radius: 2px;
}

/* Responsivo */
@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
    font-size: 16px;
  }
  
  .faq-content {
    padding: 0 20px 20px 20px;
  }
}