body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* ========== CONTAINER PRINCIPAL ========== */
.inicio-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ========== HEADER ========== */
.soporte-header {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.logo-section:hover {
  transform: scale(1.05);
}

.logo-icon {
  font-size: 50px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.logo-text h1 {
  margin: 0;
  font-size: 28px;
  color: #667eea;
  font-weight: 700;
}

.logo-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.header-stats {
  display: flex;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 10px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item.highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: bold;
  color: #667eea;
}

.stat-item.highlight .stat-value {
  color: white;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.stat-item.highlight .stat-label {
  color: rgba(255, 255, 255, 0.9);
}

/* ========== MAIN CONTENT ========== */
.main-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.welcome-section {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.welcome-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.welcome-section p {
  font-size: 18px;
  opacity: 0.95;
}

/* ========== FORMULARIO ========== */
.ticket-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-enviar {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-enviar:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-enviar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.mensaje-exito {
  margin-top: 20px;
  padding: 15px;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== INFO SECTION ========== */
.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
  gap: 20px;
  margin-top: 40px;
}

.info-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

.info-card h3 {
  margin: 10px 0;
  color: #667eea;
  font-size: 18px;
}

.info-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

/* ========== FOOTER ========== */
.soporte-footer {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  text-align: center;
  margin-top: 60px;
  color: #666;
  font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .header-stats {
    width: 100%;
    justify-content: center;
  }

  .welcome-section h2 {
    font-size: 28px;
  }

  .ticket-form {
    padding: 25px;
  }

  .info-section {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   Inicio.css - Percival Store
   Paleta: negro + rojo + dorado
   =========================== */

:root {
  --bg: #0a0a0a;
  --text: #e9ecef;
  --muted: #b7bcc4;
  --stroke: rgba(255, 255, 255, 0.12);
  --red: #e50914;
  --red-2: #ff1a25;
  --red-3: #a20810;
  --gold: #d4af37;
  --gold-2: #f0d574;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: #0a0a0a;
  background: var(--bg);
  color: #e9ecef;
  color: var(--text);
}

.inicio-container {
  min-height: 100vh;
  background: #0a0a0a;
  background: var(--bg);
  padding-top: 80px;
}

/* ===========================
   NAVBAR SIMPLE
   =========================== */
.navbar-simple {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid var(--stroke);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand h1 {
  font-family: 'Orbitron', monospace;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #d4af37, #f0d574);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.navbar-glow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #d4af37 50%, 
    transparent 100%
  );
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--gold) 50%, 
    transparent 100%
  );
  opacity: 0.5;
}

/* ===========================
   WIDGET DE SOPORTE FLOTANTE
   =========================== */
.soporte-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.soporte-header-text {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e50914, #ff1a25);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.floating-cat {
  width: 120px;
  height: 120px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.floating-cat img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.soporte-buttons {
  display: flex;
  gap: 12px;
}

.soporte-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.soporte-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.soporte-btn.telegram {
  background: linear-gradient(135deg, #0088cc, #0077b5);
}

.soporte-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ===========================
   SELECTOR DE PLATAFORMAS
   =========================== */
.plataformas-selector {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 24px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.plataforma-card {
  flex: 1 1;
  max-width: 200px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border: 2px solid var(--stroke);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.plataforma-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: #d4af37;
  border-color: var(--gold);
}

.plataforma-card.active {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.plataforma-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  padding: 8px;
}

.plataforma-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plataforma-card span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #e9ecef;
  color: var(--text);
  letter-spacing: 0.5px;
}

.plataforma-card.active span {
  color: #d4af37;
  color: var(--gold);
}

/* ===========================
   CONTENIDO PRINCIPAL
   =========================== */
.main-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 24px;
}

/* ===========================
   FORMULARIO DE CONSULTA
   =========================== */
.consulta-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 40px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.form-section {
  margin-bottom: 30px;
}

.form-section label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #d4af37;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.form-section input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border: 2px solid var(--stroke);
  border-radius: 12px;
  padding: 16px 20px;
  color: #e9ecef;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-section input:focus {
  outline: none;
  border-color: #d4af37;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-section input::placeholder {
  color: #b7bcc4;
  color: var(--muted);
}

.form-section input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.info-text {
  margin-top: 8px;
  font-size: 13px;
  color: #b7bcc4;
  color: var(--muted);
  font-family: 'Rajdhani', sans-serif;
}

/* ===========================
   BOTÓN OBTENER
   =========================== */
.btn-obtener {
  width: 100%;
  background: linear-gradient(135deg, #e50914, #ff1a25);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: white;
  border: none;
  border-radius: 14px;
  padding: 18px 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-obtener::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ff1a25, #e50914);
  background: linear-gradient(135deg, var(--red-2), var(--red));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-obtener:hover::before {
  opacity: 1;
}

.btn-obtener:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

.btn-obtener:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-obtener > * {
  position: relative;
  z-index: 1;
}

/* SPINNER */
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===========================
   ALERTAS Y RESULTADOS
   =========================== */
.alert-error {
  margin-top: 20px;
  background: rgba(229, 9, 20, 0.1);
  border: 2px solid #e50914;
  border: 2px solid var(--red);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ff1a25;
  color: var(--red-2);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.resultado-box {
  margin-top: 30px;
  background: rgba(212, 175, 55, 0.05);
  border: 2px solid #d4af37;
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 30px;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.resultado-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #d4af37;
  color: var(--gold);
}

.resultado-header h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.codigo-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border: 2px solid var(--stroke);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.codigo-valor {
  font-family: 'Orbitron', monospace;
  font-size: 32px;
  font-weight: 700;
  color: #d4af37;
  color: var(--gold);
  letter-spacing: 4px;
}

.btn-copiar {
  background: linear-gradient(135deg, #d4af37, #f0d574);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0a0a0a;
  color: var(--bg);
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-copiar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.validez-info {
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 16px;
}

.validez-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fecha-info {
  text-align: center;
  color: #b7bcc4;
  color: var(--muted);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 16px;
}

.instrucciones-info {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #d4af37;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 16px 20px;
  color: #e9ecef;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* ===========================
   IFRAME CONTAINER
   =========================== */
.iframe-container {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border: 2px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
}

.external-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===========================
   FOOTER
   =========================== */
.soporte-footer {
  text-align: center;
  padding: 40px 24px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid var(--stroke);
}

.soporte-footer p {
  color: #b7bcc4;
  color: var(--muted);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  margin: 0;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .inicio-container {
    padding-top: 70px;
  }
  
  .navbar-container {
    height: 70px;
    padding: 0 16px;
  }
  
  .navbar-brand h1 {
    font-size: 24px;
  }
  
  .plataformas-selector {
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
  }
  
  .plataforma-card {
    max-width: 100%;
  }
  
  .consulta-form {
    padding: 24px;
  }
  
  .codigo-display {
    flex-direction: column;
    text-align: center;
  }
  
  .codigo-valor {
    font-size: 24px;
  }
  
  .btn-copiar {
    width: 100%;
    justify-content: center;
  }
  
  .soporte-widget {
    bottom: 20px;
    right: 20px;
    transform: scale(0.85);
  }
}

@media (max-width: 480px) {
  .navbar-brand h1 {
    font-size: 20px;
  }
  
  .consulta-form {
    padding: 20px;
  }
  
  .codigo-valor {
    font-size: 20px;
    letter-spacing: 2px;
  }
  
  .soporte-widget {
    transform: scale(0.75);
  }
}

/* ===========================
   ACCESIBILIDAD
   =========================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ===========================
   FOOTER MEJORADO
   =========================== */
.soporte-footer {
  margin-top: 80px;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid var(--stroke);
  position: relative;
  overflow: hidden;
}

.soporte-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #d4af37 50%, 
    transparent 100%
  );
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--gold) 50%, 
    transparent 100%
  );
}

.soporte-footer p {
  color: #b7bcc4;
  color: var(--muted);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  text-align: center;
  letter-spacing: 0.5px;
}

.soporte-footer p::before {
  content: '✦';
  margin-right: 12px;
  color: #d4af37;
  color: var(--gold);
  font-size: 12px;
}

.soporte-footer p::after {
  content: '✦';
  margin-left: 12px;
  color: #d4af37;
  color: var(--gold);
  font-size: 12px;
}

/* Versión alternativa más elaborada (opcional) */
.soporte-footer-alt {
  margin-top: 80px;
  padding: 50px 24px 30px;
  background: linear-gradient(180deg, 
    rgba(10, 10, 10, 0) 0%, 
    rgba(212, 175, 55, 0.03) 100%
  );
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid var(--stroke);
  position: relative;
}

.soporte-footer-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #d4af37 50%, 
    transparent 100%
  );
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--gold) 50%, 
    transparent 100%
  );
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #d4af37, #f0d574);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.footer-text {
  color: #b7bcc4;
  color: var(--muted);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0;
  letter-spacing: 0.5px;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #d4af37 50%, 
    transparent 100%
  );
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--gold) 50%, 
    transparent 100%
  );
  margin: 20px auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.footer-link {
  color: #b7bcc4;
  color: var(--muted);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  background: var(--gold);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #d4af37;
  color: var(--gold);
}

.footer-link:hover::after {
  width: 100%;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .soporte-footer {
    padding: 30px 16px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
