/**
 * Pley - Estilos de la página Descargar APK
 */

/* ============================================
   SECCIÓN COMPATIBILIDAD
   ============================================ */
.section-compatibilidad {
  background-color: #150530;
}

.compat-subtitle {
  max-width: 42rem;
}

.compat-icon {
  width: 5rem;
  height: 5rem;
  background-color: #1a0b2e;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.compat-icon .material-icons {
  font-size: 2.25rem;
  transition: color 0.3s;
}

.compat-item:hover .compat-icon {
  border-color: rgba(221, 0, 255, 0.5) !important;
  box-shadow: 0 0 15px rgba(221, 0, 255, 0.2);
}

.compat-item:hover .material-icons {
  color: #dd00ff !important;
}

/* ============================================
   SECCIÓN INSTALACIÓN RÁPIDA
   ============================================ */
.section-instalacion-rapida {
  background: linear-gradient(to bottom, #150530, #0d0220);
}

/* ============================================
   PASOS DE INSTALACIÓN
   ============================================ */
.step-card {
  background: rgba(26, 9, 64, 0.6);
  border: 1px solid rgba(221, 0, 255, 0.2);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(221, 0, 255, 0.5);
  box-shadow: 0 20px 40px rgba(221, 0, 255, 0.2);
}

.step-number {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #9000ff 0%, #dd00ff 100%);
  box-shadow: 0 0 25px rgba(221, 0, 255, 0.4);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

/* ============================================
   BOTÓN VER GUÍAS
   ============================================ */
.btn-ver-guias {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #9000ff 0%, #dd00ff 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 9999px;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(144, 0, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-ver-guias:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(221, 0, 255, 0.5);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ver-guias:active {
  transform: translateY(-1px);
}