/* Estrutura do FAQ. Cores devem ser aplicadas inline no conteudo. */
#faq-section {
  width: 100%;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
}

#faq-section__header {
  margin: 0 0 16px;
  text-align: center;
}

#faq-section__title {
  margin: 0;
}

#faq-section__list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

#faq-section__item,
#faq-section__details {
  width: 100%;
}

#faq-section__details {
  overflow: hidden;
  border-radius: 12px;
}

#faq-section__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
}

#faq-section__summary::-webkit-details-marker {
  display: none;
}

#faq-section__q-text,
#faq-section__a-text {
  margin: 0;
}

#faq-section__icon {
  position: relative;
  display: inline-block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

#faq-section__icon::before,
#faq-section__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

#faq-section__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

#faq-section__details[open] #faq-section__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

#faq-section__a-inner {
  padding: 0 16px 18px;
}
