.faq {
    background-color: #f6f6f6;
    padding: 80px 20px;
    text-align: center;
    font-family: sans-serif;
    color: #1d1d1d;
  }
  
  .faq h2 {
    font-size: 2rem;
    color: #6e253e;
    font-weight: bold;
    margin-bottom: 40px;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .faq-item {
    border-bottom: 1px solid #eee;
  }
  
  .faq-question {
    width: 100%;
    padding: 20px;
    font-size: 1rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #003920;
  }
  
  .faq-question span {
    font-size: 24px;
    color: #c67b8f
  }
  
  .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}
  
 .faq-item.open .faq-answer {
  max-height: 500px; /* suficiente para o conteúdo */
  padding: 20px;
}
  
  .faq-item.open .faq-question span {
    transform: rotate(45deg);
  }
  
  .faq-footer {
    margin-top: 60px;
    font-size: 0.85rem;
    color: #003920;
  }

  @media (max-width: 768px) {
  .faq {
    padding: 60px 16px;
  }

  .faq h2 {
    font-size: 1.6rem;
  }

  .faq-container {
    border-radius: 0;
  }

  .faq-question {
    padding: 16px;
    font-size: 0.95rem;
    flex-wrap: nowrap; /* impede quebra de linha */
    justify-content: space-between; /* mantém texto à esquerda e + à direita */
    gap: 0; /* elimina espaço desnecessário */
  }

  .faq-question span {
    font-size: 20px;
    flex-shrink: 0; /* impede que o + encolha */
    margin-left: 10px; /* opcional: distância do texto */
  }

  .faq-answer {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .faq-item.open .faq-answer {
    padding: 16px;
  }

  .faq-footer {
    margin-top: 40px;
    font-size: 0.8rem;
  }
}
