NEW_FILE_CODE
/**
 * Pley - Estilos de la página Soporte
 */

/* ============================================
   HERO SECTION
   ============================================ */
.hero-soporte {
  height: 700px;
  padding-top: 100px;
  background-color: #150530;
}

.hero-soporte .glow-effect {
  opacity: 0.1;
  pointer-events: none;
}

.hero-soporte .glow-circle {
  position: absolute;
  top: 25%;
  left: 33%;
  width: 20rem;
  height: 20rem;
  background-color: #dd00ff;
  filter: blur(120px);
}

.hero-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background-color: rgba(221, 0, 255, 0.2);
  color: #ff4cf6;
  border: 1px solid rgba(221, 0, 255, 0.4);
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.15;
}

.hero-title span {
  color: #dd00ff;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   TEMAS DE AYUDA
   ============================================ */
.help-topic-card {
  background-color: #1a0b2e;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
  display: block;
  padding: 1.5rem;
  text-decoration: none;
  height: 100%;
  cursor: pointer;
}

.help-topic-card:hover {
  border-color: rgba(221, 0, 255, 0.5) !important;
}

.help-topic-card .topic-icon {
  font-size: 2rem;
  color: #dd00ff;
  margin-bottom: 0.75rem;
  display: block;
}

.topic-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
  transition: color 0.3s;
}

.help-topic-card:hover .topic-title {
  color: #dd00ff !important;
}

.help-topic-card .topic-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* ============================================
   SOLUCIONES RÁPIDAS
   ============================================ */
.quick-solution-card {
  background-color: #150530;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
}

.quick-solution-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
}

.quick-solution-title .material-icons {
  color: #dd00ff;
}

.quick-solution-content {
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.quick-solution-content p {
  margin-bottom: 0;
}

.quick-solution-content strong {
  color: #ffffff;
}

.quick-solution-list {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0;
  padding-left: 1rem;
}

.quick-solution-list li {
  margin-bottom: 0;
}

.quick-solution-list strong {
  color: #ffffff;
}

/* ============================================
   TUTORIAL CARDS
   ============================================ */
.tutorial-card {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  background-color: #1a0b2e;
}

.tutorial-card:hover {
  border-color: rgba(221, 0, 255, 0.5) !important;
  box-shadow: 0 20px 40px rgba(221, 0, 255, 0.15);
  transform: translateY(-6px);
}

.tutorial-card:hover .tutorial-title {
  color: #dd00ff;
}

.tutorial-card:hover .tutorial-divider {
  width: 6rem;
}

.tutorial-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s;
}

.tutorial-divider {
  height: 2px;
  width: 4rem;
  background: linear-gradient(90deg, #9000ff, #dd00ff);
  margin: 0.75rem 0;
  transition: width 0.3s;
}