
.faq-dsms {
  padding: 40px 0;
  background-color: #f6f7f9;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.faq-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Coluna esquerda */
.faq-aside {
  flex: 0 0 280px;
}

.faq-aside h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.faq-aside-text h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-aside-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 8px;
}

.faq-email a {
  font-weight: 600;
  color: #005bbf;
  text-decoration: none;
}

.faq-email a:hover {
  text-decoration: underline;
}

/* Coluna direita */
.faq-content {
  flex: 1;
}

/* Itens do acordeão */
.faq-item {
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* Cabeçalho do item (summary) */
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 48px 14px 16px;
  font-size: 15px;
  font-weight: 600;
  background-color: #ffffff;
  border: 1px solid #e1e4ea;
  position: relative;
}

/* remove o marcador padrão do summary */
.faq-item > summary::-webkit-details-marker {
  display: none;
}

/* Ícone de seta */
.faq-item > summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #4b4b4b;
  border-bottom: 2px solid #4b4b4b;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}

/* Quando aberto, gira a seta */
.faq-item[open] > summary::after {
  transform: translateY(-50%) rotate(225deg);
}

/* Corpo do item */
.faq-body {
  border: 1px solid #e1e4ea;
  border-top: none;
  padding: 16px 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.faq-body p {
  margin-bottom: 10px;
}

.faq-body a {
  color: #005bbf;
  text-decoration: underline;
}

/* Feedback "essa informação foi útil?" */
.faq-feedback {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #eceff4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.faq-feedback span {
  font-size: 13px;
  color: #555;
}

.faq-feedback-buttons {
  display: flex;
  gap: 8px;
}

.faq-feedback button {
  border: 1px solid #d0d4dd;
  background-color: #ffffff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}

.faq-feedback button:hover {
  background-color: #f0f2f7;
}

/* Responsivo */
@media (max-width: 768px) {
  .faq-grid {
    flex-direction: column;
  }
  
  .faq-aside {
    flex: 1 1 auto;
  }
}

