/* === FAQ === */
.faq {
  background: var(--bege-claro);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--branco);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px -10px rgba(0,0,0,0.08);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 28px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--grafite);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--azul-escuro);
}

.faq-q .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--azul);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.open .faq-a {
  max-height: 1000px;
  padding: 0 28px 26px;
}

.faq-a p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--texto);
}