/* ===================================================
   FAQ SECTION - PREMIUM MODERN STYLE
   =================================================== */

.faq-section {
  padding: 140px 0;
  background: #0D1117;
  position: relative;
  overflow: hidden;
}

/* Background Glows */
.faq-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-accordion {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 163, 255, 0.3);
  transform: translateX(8px);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 214, 0, 0.3); /* Destaque amarelo suave */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.faq-question {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question span {
  font-size: 1.25rem;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question span {
  color: #00A3FF;
}

/* Minimalist Arrow Icon */
.faq-icon-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-size: 0.8rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  background: #00A3FF;
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 163, 255, 0.4);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 32px;
}

.faq-answer-inner {
  padding: 0 32px 32px;
  color: #94A3B8;
  font-size: 1.1rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0 32px;
  padding-top: 24px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-section .container {
    padding: 0 12px;
  }

  .faq-accordion {
    margin-top: 20px;
    gap: 6px;
  }

  .faq-item {
    border-radius: 10px;
  }

  .faq-item:hover {
    transform: none;
  }

  .faq-question {
    padding: 8px 16px;
    gap: 10px;
  }

  .faq-question span {
    font-size: 0.875rem;
    line-height: 1.3;
    font-weight: 500;
  }

  .faq-icon-arrow {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
    flex-shrink: 0;
  }

  .faq-answer-inner {
    padding: 0 0 16px;
    margin: 0 14px;
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 16px;
  }
}