.faq-section {
  min-height: 100svh;
  padding: 32px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-container {
  max-width: 980px;
  width: 100%;
  text-align: center;
}

.faq-container h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.faq-subtitle {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-list {
  text-align: left;
}

.faq-list.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );
  padding: 14px 16px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(0, 247, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.faq-item.active {
  border-color: rgba(0, 247, 255, 0.35);
  background: linear-gradient(
    180deg,
    rgba(0, 247, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-question .icon {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--neon);
  transition: transform 0.25s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    margin-top 0.35s ease;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  margin-top: 8px;
}

.faq-answer p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  padding-bottom: 0;
}

/* CTA FINAL FAQ */
.faq-list.two-columns .cta-final-etapas {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.cta-final-etapas {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.botao-secundario {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
  color: #d1d5db;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);

  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.botao-secundario i {
  font-size: 1rem;
}

.botao-secundario:hover {
  color: var(--neon);
  border-color: rgba(0, 247, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 247, 255, 0.12);
}

/* BRILHO ANIMADO CONTÍNUO */
.botao-secundario::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-30deg);
  animation: shine 3s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    left: -120%;
  }

  100% {
    left: 130%;
  }
}

/* ANIMAÇÃO DE ENTRADA */
.cta-botoes a {
  opacity: 0;
  transform: translateY(40px) scale(0.85);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.cta-final-etapas.show .cta-botoes a {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 64px 20px 68px;
  }

  .faq-container h3 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .faq-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .faq-list.two-columns {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-column {
    gap: 12px;
  }

  .faq-item {
    padding: 14px;
    border-radius: 16px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .botao-secundario {
    width: 100%;
    max-width: 320px;
  }
}
