/* Estilos para el panel FAQ */
.faq-panel {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: none !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.faq-panel.show {
  opacity: 1;
  transform: translateY(0);
}

.panel-header {
  background: linear-gradient(135deg, #200769 0%, #4a00e0 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item {
  color: #333;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.faq-item:hover {
  background-color: #f8f9fa;
  border-color: #e9ecef;
  transform: translateX(5px);
}

.faq-item .faq-icon {
  width: 36px;
  height: 36px;
  background-color: #f4b32820;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #200769;
  transition: all 0.2s ease;
}

.faq-item:hover .faq-icon {
  background-color: #f4b328;
  color: white;
  transform: scale(1.1);
}

.btn-primary {
  background-color: #200769;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #4a00e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-close {
  opacity: 0.7;
  transition: all 0.2s ease;
}

.btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Animación de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.show {
  animation: fadeInUp 0.4s ease forwards;
}