/* ====================================
   FAQ MODERN - PSICOG
   ==================================== */

.faq-accordion {
  width: 100%;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 28, 55, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 28, 55, 0.12);
  transform: translateY(-2px);
}

.faq-item.active {
  box-shadow: 0 8px 24px rgba(0, 179, 186, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  gap: 20px;
}

.faq-question:hover {
  background: rgba(0, 179, 186, 0.03);
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.faq-number {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdbf00, #ffca28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #001c37;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item:nth-child(2) .faq-number {
  background: linear-gradient(135deg, #00b3ba, #00d4dd);
  color: #ffffff;
}

.faq-item:nth-child(3) .faq-number {
  background: linear-gradient(135deg, #6244C5, #7c5ed7);
  color: #ffffff;
}

.faq-item:nth-child(4) .faq-number {
  background: linear-gradient(135deg, #001c37, #003d6b);
  color: #ffffff;
}

.faq-item:nth-child(5) .faq-number {
  background: linear-gradient(135deg, #fd4496, #ff5ba8);
  color: #ffffff;
}

.faq-item:nth-child(6) .faq-number {
  background: linear-gradient(135deg, #4CAF50, #5fc463);
  color: #ffffff;
}

.faq-item.active .faq-number {
  transform: scale(1.1) rotate(5deg);
}

.faq-title {
  font-size: 19px;
  font-weight: 600;
  color: #001c37;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-item.active .faq-title {
  color: #00b3ba;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: #00b3ba;
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  stroke: #001c37;
}

.faq-item.active .faq-icon svg {
  stroke: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 28px 28px 28px;
  padding-left: 96px;
}

.faq-answer-text {
  font-size: 16px;
  line-height: 1.7;
  color: #5a5a5a;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
    gap: 14px;
  }

  .faq-question-content {
    gap: 14px;
  }

  .faq-number {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .faq-title {
    font-size: 16px;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
  }

  .faq-icon svg {
    width: 18px;
    height: 18px;
  }

  .faq-answer-content {
    padding: 0 20px 20px 20px;
    padding-left: 76px;
  }

  .faq-answer-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 18px;
  }

  .faq-number {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .faq-title {
    font-size: 15px;
  }

  .faq-answer-content {
    padding: 0 18px 18px 18px;
    padding-left: 18px;
  }
}
