
.section__faq {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.section__faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
}

/* Header Styles */
.faq__header {
  margin-bottom: 60px;
}

.faq__tag {
  display: inline-block;
  color: #8b5cf6;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 2px;
  position: relative;
  padding-left: 20px;
}

.faq__tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
  border-radius: 3px;
}

.faq__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}

.faq__subtitle {
  font-size: 18px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 0;
}

/* CTA Buttons */
.faq__cta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-faq-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 50%, #f59e0b 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-faq-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
  color: white;
}

.btn-faq-link {
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 16px;
  transition: color 0.3s ease;
  font-size: 16px;
  position: relative;
}

.btn-faq-link::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-faq-link:hover {
  color: #8b5cf6;
}

.btn-faq-link:hover::after {
  transform: translateX(4px);
}

/* Accordion Styles */
.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq__item:hover {
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.1);
}

.faq__question {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.faq__question:hover {
  background-color: rgba(139, 92, 246, 0.02);
}

.faq__question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  padding-right: 20px;
  line-height: 1.4;
}

.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(217, 70, 239, 0.1) 100%);
  border-radius: 12px;
  color: #8b5cf6;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq__icon svg {
  width: 20px;
  height: 20px;
}

/* Estado Ativo */
.faq__item.active {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.faq__item.active .faq__icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
  color: white;
}

.faq__icon line {
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: center;
}

.faq__item.active .faq__icon line:first-child {
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.active .faq__answer {
  max-height: 500px;
}

.faq__answer-content {
  padding: 0 32px 32px 32px;
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

.faq__answer-content p {
  margin: 0;
}

.faq__empty {
  color: #999;
  font-style: italic;
  text-align: center;
  padding: 40px;
}

/* Responsividade - Tablets */
@media (max-width: 991px) {
  .section__faq {
    padding: 60px 0;
  }

  .faq__header {
    margin-bottom: 40px;
    position: relative !important;
    top: auto !important;
  }

  .faq__title {
    font-size: 48px;
  }

  .faq__subtitle {
    font-size: 16px;
  }

  .faq__cta {
    justify-content: center;
  }

  .faq__question {
    padding: 24px;
  }

  .faq__answer-content {
    padding: 0 24px 24px 24px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .section__faq {
    padding: 40px 0;
  }

  .faq__tag {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .faq__title {
    font-size: 36px;
  }

  .faq__subtitle {
    font-size: 15px;
  }

  .faq__cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn-faq-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }

  .faq__accordion {
    gap: 12px;
  }

  .faq__item {
    border-radius: 16px;
  }

  .faq__question {
    padding: 20px;
  }

  .faq__question h3 {
    font-size: 16px;
  }

  .faq__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .faq__icon svg {
    width: 18px;
    height: 18px;
  }

  .faq__answer-content {
    padding: 0 20px 20px 20px;
    font-size: 15px;
  }
}