.faq {
  background: var(--snow);
}

.faq-list {
  max-width: 820px;
  margin: 1rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 3rem;
  position: relative;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.25s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--red); }

/* Marcador +/− */
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.75rem;
  color: var(--red);
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
  animation: faqMark 0.3s ease;
}

/* O marcador dá um pequeno pop ao abrir */
@keyframes faqMark {
  from { transform: translateY(-50%) scale(0.55); }
  to   { transform: translateY(-50%) scale(1); }
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.faq-answer {
  padding: 0 3rem 1.75rem;
  text-align: center;
}

/* Resposta entra com fade + leve descida ao abrir (fecha instantâneo: saída é rápida) */
.faq-item[open] .faq-answer {
  animation: faqReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item[open] .faq-answer,
  .faq-item[open] summary::after { animation: none; }
}

.faq-answer p {
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}

.faq-cta {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.faq-cta span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
}
