.faq-container {
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 8px;
  }

  .faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    flex-shrink: 0; 
  }

  .faq-item.active {
    border-color: white;
  }

  .faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background-color: transparent; 
    color: #000000;                
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
  }

  .faq-trigger:hover,
  .faq-item.active .faq-trigger {
    background-color: #FD8932;
    color: #fff ;
  }

  .faq-icon {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 300;
    transition: transform 0.3s ease;
  }

  /* Rotaciona o ícone levemente quando ativo */
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }

  /* Caixa de Resposta */
  .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f9f9f9;
  }

  .faq-text {
    padding: 24px;
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 0.95rem;
  }

  

.faq-item {
  counter-increment: faq-counter;
}


.faq-trigger span:first-child::before {
  content: counter(faq-counter, decimal-leading-zero) ". ";
  font-weight: 700;
  margin-right: 12px; 
  opacity: 0.8; 
}


@media (max-width: 798px) {
  .faq-container{
    width: 100%;

  }
}