/* styles/faq.css */

.secao-faq {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 100px;
    text-align: left;
  }
  
  .faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: #222;
  }
  
  .faq-question i {
    transition: transform 0.2s;
  }
  
  .faq-answer {
    display: none;
    text-align: left;
    margin-top: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
  }
  
  /* Quando ativo, gira a seta e exibe a resposta */
  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }
  
  
  