:root{
  --bg:#000;
  --card:#0b0b0b;
  --text:#fff;
  --muted:rgba(255,255,255,.6);
  --gold1:#f5c76b;
  --gold2:#d4a73c;
}

.faq-section{
  background: var(--bg);
  padding: 90px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-section h1{
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 70px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--gold1), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.01)
  );
  border: 1px solid rgba(245,199,107,.25);
  border-radius: 14px;
  padding: 0 28px;
  margin-bottom: 18px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.8) inset,
    0 12px 40px rgba(0,0,0,.6);
  transition: border .3s ease, box-shadow .3s ease;
}

.faq-item.active{
  border: 1px solid rgba(245,199,107,.6);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.7) inset,
    0 20px 60px rgba(0,0,0,.8);
}

.faq-question{
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  color: var(--gold1);
  font-size: clamp(1rem, 5vw, 1.5rem);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: .2px;
    line-height: 1.5;
}

.faq-question span{
  font-size: clamp(1rem, 5vw, 1.5rem);
  font-weight: 300;
  color: var(--gold2);
  transition: transform .35s ease, color .35s ease;
}

.faq-item.active .faq-question span{
  transform: rotate(45deg);
  color: var(--gold1);
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.faq-answer p{
  padding: 0 0 26px;
  color: var(--muted);
  font-size: clamp(1rem, 5vw, 1.5rem);
  line-height: 1.5;
}

.faq-ajuste{
  padding-bottom: 2rem;
}


