/* FIX CRÍTICO: Visibilidad del texto del hero */

/* Asegurar fondo oscuro para contraste */
.hero {
  background: #0a0a0a !important;
  position: relative !important;
}

/* Fondo oscuro adicional por si hay transparencias */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.hero-content {
  position: relative !important;
  z-index: 1 !important;
}

/* Texto principal en blanco sólido */
.hero-title {
  color: #ffffff !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Texto blanco simple para "Desarrollo de Software con Inteligencia Artificial" */
.text-gradient {
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  display: inline-block !important;
  font-weight: 900 !important;
  position: relative !important;
}

/* Subtítulo en gris claro */
.hero-subtitle {
  color: #e2e8f0 !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Si el navegador no soporta gradientes de texto, usar color sólido */
@supports not (-webkit-background-clip: text) {
  .text-gradient {
    background: none !important;
    color: #10B981 !important;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.8) !important;
  }
}