@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.faq-page {
  font-family: 'Poppins', sans-serif;
  padding-top: 120px; /* Espaço para o header fixo */
  padding-bottom: 80px;
  background-color: #0c1510; /* Mantém o fundo escuro do site */
}

.faq-section h1 {
  font-size: 2.8rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion details {
  background: #1a2921; /* Um tom de verde escuro, levemente mais claro que o fundo */
  border: 1px solid #2a4a38;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.faq-accordion details[open] {
  background-color: #203a2b;
}

.faq-accordion summary {
  padding: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  list-style: none; /* Remove o marcador padrão */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Adiciona um ícone de '+' e '-' customizado */
.faq-accordion summary::after {
  content: "+";
  font-size: 2rem;
  font-weight: 300;
  color: var(--cor-principal, #25d366);
  transition: transform 0.3s ease;
}

.faq-accordion details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-accordion details p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #c0c0c0;
  line-height: 1.6;
  margin: 0;
  border-top: 1px solid #2a4a38;
  padding-top: 1.5rem;
  margin-top: -0.5rem;
}

.faq-cta {
  text-align: center;
  margin-top: 5rem;
  padding: 3rem;
  background: #1a2921;
  border-radius: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.faq-cta p {
  color: #b0b0b0;
  margin-bottom: 2rem;
}