/* ================================
   SEÇÃO DO FAQ (Accordion) Vdesign.com.br
   ================================ */

/* Importação das fontes TEDx */
/* Presume-se que já estejam importadas */

/* Seção principal */
.accordion-section {
  background-color: #fff;
  padding: 60px 0;
}

/* Título principal da seção */
.accordion-section .section-heading h2 {
  font-weight: 100 ;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: 'TEDxDisplayLight', sans-serif ;
}

/* Bloco FAQ */
.faq-item {
  transition: all 0.3s ease;
  padding: 0;
}

.faq-item:hover {
  transform: translateY(-2px);
}

/* Cabeçalho da pergunta - H5 */
.panel-heading h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 100 !important; /* mais fino */
  font-size: 15px;
  margin: 0;
  color: #fff; /* texto branco */
  background-color: #f96d00;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 10px 15px;
  border-radius: 4px;
  font-family: 'TEDxDisplayLight', sans-serif; /* fonte leve */
}

/* Hover do cabeçalho */
.panel-heading h5:hover {
  background: linear-gradient(90deg, #f96d00, #b60032);
  color: #fff;
}

/* Ícone da seta */
.faq-icon {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9rem;
  display: inline-block;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
  transform-origin: center;
}

/* Conteúdo padrão: seta para direita */
.faq-icon::before {
  content: "\f054"; /* fa-chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* Quando o painel estiver aberto, gira a seta */
.faq-question[aria-expanded="true"] .faq-icon,
.panel-heading h5.active .faq-icon {
  transform: rotate(90deg);
  color: #fff;
}

/* Corpo da resposta: fundo laranja claro e texto branco */
.faq-answer {
  background-color: #FF9729; /* laranja mais claro */
  border-left: 3px solid #F96D00; /* borda laranja escura */
  padding: 15px 20px;
  animation: fadeIn 0.4s ease;
  margin-top: 10px;
  border-radius: 4px;
}

/* H4 dentro da resposta */
.faq-answer h4 {
  color: #fff; /* texto branco */
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  font-family: 'TEDxDisplayLight', sans-serif; /* fonte leve */
  font-weight: 100;
}

/* Animação suave de entrada */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover no ícone */
.panel-heading h5:hover .faq-icon {
  color: #fff;
}

/* Estado ativo */
.panel-heading h5.active {
  color: #fff;
}

/* Responsividade */
@media (max-width: 767px) {
  .panel-heading h5 {
    font-size: 16px;
  }
  .faq-answer h4 {
    font-size: 13px;
  }
}
.titulo_accordion{
	 font-family: 'TEDxDisplayLight', sans-serif; /* fonte leve */
  font-weight: 100;
	font-size: 10px;
	
}