/* ===== Seção Dúvidas Frequentes ===== */

h2.faq-heading {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 1.8rem + 3vw, 4rem) !important;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  margin: 0 0 1.5rem 0;
  white-space: nowrap;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  border-top: 1px solid currentColor;
}

.faq-item:last-child {
  border-bottom: 1px solid currentColor;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.1rem 0;
  font-family: inherit;
  font-size: 1rem;
  text-align: left;
  color: inherit;
}

.faq-question-text {
  font-weight: 500;
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-icon::before {
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 16px;
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0 0 1.1rem 0;
  padding-right: 2rem;
  line-height: 1.6;
}

.faq-media img {
  width: 100%;
  height: auto;
  display: block;
}