.faq-section {
  color: #fff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-container .faq-header h2 {
  font-size: 36px;
  margin-bottom: 1rem;
}

.faq-container .faq-header p,
#ia-empty-guide .faq-container .faq-header p {
  color: #94a3b8;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 0;
}

.faq-item {
  background-color: #141e30;
  margin-bottom: 1rem;
  border: 1px solid #1e293b;
  border-radius: 7px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #162338;
}

.faq-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #38bdf8;
  border-bottom: 2px solid #38bdf8;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(-135deg);
}

.faq-answer {
  display: none;
  padding: 15px 25px;
  border-top: 1px solid #253145;
  border-radius: 6px;
  color: #cbd5e1;
  background-color: #141e30;
  font-size: 0.95rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.faq-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ajuda .faq-item {
  background-color: #262728;border: none;
}

.ajuda .faq-answer {
    background-color: #333536;
    border-top: none;
}

.ajuda .faq-question:hover {
    background: #3b3c3d;
}

.light-theme .ajuda .faq-item {
    background-color: #eaeaf1;
    border-color: #e3e3e3;
}

.light-theme .ajuda .faq-question {
    color: var(--text);
}

.light-theme .ajuda .faq-answer {
    background-color: #f8f8fb;
    border-top: none;
    color: var(--text);
}

.light-theme .ajuda .faq-question:hover {
    background: #e1e1e6;
}

