/* page-index.css — extraído de index.html (estilos inline) */

/* Estilos específicos para el diseño premium */
    :root {
      --spacing-xl: 5rem;
      --spacing-lg: 3rem;
      --spacing-md: 2rem;
      --spacing-sm: 1rem;
    }
    
    /* Mejoras tipográficas */
    .sc-hero-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.1;
    }
    
    .sc-section-title-main {
      font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .sc-card-title {
      font-size: 1.25rem;
    }
    
    .sc-body-text {
      font-size: 1rem;
      line-height: 1.7;
    }
    
    /* Optimización de espaciado */
    .sc-section {
      padding-top: var(--spacing-xl);
      padding-bottom: var(--spacing-xl);
    }
    
    .sc-section-sm {
      padding-top: var(--spacing-lg);
      padding-bottom: var(--spacing-lg);
    }
    
    /* Grid mejorado */
    .sc-grid-optimized {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
      gap: 2rem;
      align-items: start;
    }
    
     /* === CUBO ANIMADO 3D - NÚCLEO DE IA === */
/* Cubo animado - Estilos optimizados */
.ai-core-visual {
    width: 100%;
    height: 400px;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    z-index: 10 !important;
    background: transparent !important;
}

.ai-core-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    animation: rotate-3d 30s linear infinite !important;
    transform-style: preserve-3d;
    transform-origin: center center;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.core-face {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(0, 102, 204, 0.05);
    border: 1px solid rgba(0, 102, 204, 0.2);
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.2);
    background-image: linear-gradient(0deg, transparent 50%, rgba(0, 102, 204, 0.05) 50.5%, rgba(0, 102, 204, 0.05) 51%);
    background-size: 100% 50px;
    backdrop-filter: blur(5px);
}

/* Posicionamiento 3D del cubo */
.core-face:nth-child(1) { transform: rotateY(0deg) translateZ(125px); }
.core-face:nth-child(2) { transform: rotateY(90deg) translateZ(125px); }
.core-face:nth-child(3) { transform: rotateY(180deg) translateZ(125px); }
.core-face:nth-child(4) { transform: rotateY(-90deg) translateZ(125px); }
.core-face:nth-child(5) { transform: rotateX(90deg) translateZ(125px); }
.core-face:nth-child(6) { transform: rotateX(-90deg) translateZ(125px); }

/* Animación de rotación 3D */
@keyframes rotate-3d {
    0% { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg); }
}

/* Animación de líneas de datos */
@keyframes dash-animation {
    0% { stroke-dashoffset: 100; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -100; }
}

/* Efectos de líneas SVG */
.data-path {
    stroke-dasharray: 10, 5;
    animation: dash-animation 3s linear infinite;
}

/* Para dispositivos móviles */
@media (max-width: 768px) {
    .ai-core-visual {
        height: 300px;
    }
    
    .ai-core-container {
        width: 200px;
        height: 200px;
    }
    
    .core-face {
        width: 200px;
        height: 200px;
    }
    
    .core-face:nth-child(1) { transform: rotateY(0deg) translateZ(100px); }
    .core-face:nth-child(2) { transform: rotateY(90deg) translateZ(100px); }
    .core-face:nth-child(3) { transform: rotateY(180deg) translateZ(100px); }
    .core-face:nth-child(4) { transform: rotateY(-90deg) translateZ(100px); }
    .core-face:nth-child(5) { transform: rotateX(90deg) translateZ(100px); }
    .core-face:nth-child(6) { transform: rotateX(-90deg) translateZ(100px); }
}

/* === CORRECCIONES DE VISIBILIDAD === */
/* Asegurar que el cubo sea visible */
.ai-core-visual {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(0, 102, 204, 0.1) !important;
}

/* Asegurar que las líneas SVG sean visibles */
.data-path {
    stroke-linecap: round;
    filter: drop-shadow(0 0 2px rgba(0, 102, 204, 0.3));
}

/* Corrección de z-index */
.sc-hero .relative:last-child {
    z-index: 20;
}

/* Asegurar que el fondo no tape el contenido */
.vortex-radial {
    z-index: -10 !important;
    opacity: 0.3 !important;
}
    
    /* Contenido SEO invisible pero indexable */
    .seo-invisible {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

/* Variables de diseño */
:root {
  --accent-cyan: #0066CC;
  --accent-teal: #0D9488;
  --animation-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Contenedor principal */
.hero-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 102, 204, 0.15);
  border-radius: 100px;
  opacity: 0;
  transform: translateY(-10px);
  animation: badgeEntrance 0.8s var(--animation-ease) 0.3s forwards;
  position: relative;
  overflow: hidden;
}

/* Entrada sutil */
@keyframes badgeEntrance {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Punto luminoso */
.badge-dot-container {
  position: relative;
  width: 12px;
  height: 12px;
}

.badge-dot {
  position: relative;
  width: 100%;
  height: 100%;
  animation: dotPop 0.6s var(--animation-ease) 0.5s forwards;
  opacity: 0;
  transform: scale(0);
}

@keyframes dotPop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  70% {
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.dot-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
  border-radius: 50%;
  z-index: 1;
}

.dot-glow {
  position: absolute;
  inset: -3px;
  background: radial-gradient(circle, 
    rgba(0, 102, 204, 0.3) 0%, 
    rgba(13, 148, 136, 0.2) 30%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  animation: glowPulse 2s ease-in-out 1.1s infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

/* Texto elegante */
.badge-text-wrapper {
  position: relative;
  overflow: hidden;
}

.badge-text {
  display: block;
  font-size: 0.875rem;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1a1a;
  opacity: 0;
  transform: translateX(-20px);
  animation: textSlide 0.6s var(--animation-ease) 0.8s forwards;
}

@keyframes textSlide {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Subrayado sutil */
.text-underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    var(--accent-cyan), 
    var(--accent-teal)
  );
  animation: underlineExpand 0.8s var(--animation-ease) 1.4s forwards;
}

@keyframes underlineExpand {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

/* Efecto hover minimalista */
.hero-badge:hover {
  transform: translateY(-1px);
  box-shadow: 
    0 4px 20px rgba(0, 102, 204, 0.1),
    0 0 0 1px rgba(0, 102, 204, 0.1);
  transition: all 0.3s var(--animation-ease);
}

.hero-badge:hover .badge-text {
  background: linear-gradient(90deg, 
    var(--accent-cyan), 
    var(--accent-teal)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.4s var(--animation-ease);
}

/* Efecto de brillo al hover */
.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-15deg);
  transition: left 0.6s ease;
}

.hero-badge:hover::before {
  left: 150%;
}

/* Modo oscuro */
@media (prefers-color-scheme: dark) {
  .hero-badge {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(0, 102, 204, 0.25);
  }
  
  .badge-text {
    color: #e2e8f0;
  }
}

/* Sin animación para preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .badge-dot,
  .badge-text,
  .text-underline,
  .dot-glow,
  .hero-badge::before {
    animation: none !important;
    transition: none !important;
  }
  
  .hero-badge {
    opacity: 1;
    transform: none;
  }
  
  .badge-dot {
    opacity: 1;
    transform: none;
  }
  
  .badge-text {
    opacity: 1;
    transform: none;
  }
  
  .text-underline {
    width: 100%;
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 640px) {
  .hero-badge {
    padding: 0.5rem 1rem;
    gap: 0.75rem;
  }
  
  .badge-text {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
  }
}

/* Variables de animación consistentes */
:root {
  --accent-cyan: #0066CC;
  --accent-teal: #0D9488;
  --animation-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --text-dark: #1a1a1a;
  --text-medium: #4a5568;
}

/* Contenedor principal */
.hero-content {
  position: relative;
}

/* Título con animaciones consistentes */
.hero-title {
  margin-bottom: 1rem;
  position: relative;
}

.title-line {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s var(--animation-ease) forwards;
  animation-delay: var(--delay, 0s);
}

/* Misma animación del badge para el slide-up */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilos específicos para cada línea */
.title-line:nth-child(1) {
  color: var(--text-dark);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}

.title-line:nth-child(2) {
  color: var(--accent-cyan);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0.25rem;
}

.title-line:nth-child(3) {
  color: var(--accent-teal);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-top: 0.25rem;
}

/* Subrayado animado (misma que el badge) */
.title-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--accent-cyan), 
    var(--accent-teal)
  );
  opacity: 0;
  animation: expandWidth 0.8s var(--animation-ease) forwards;
  animation-delay: var(--delay, 0.7s);
}

@keyframes expandWidth {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 120px;
    opacity: 1;
  }
}

/* Descripción con animación consistente */
.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-medium);
  max-width: 36rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s var(--animation-ease) forwards;
  animation-delay: var(--delay, 0.8s);
}

/* Palabras destacadas con pop animation (similar al dot del badge) */
.highlight-word {
  position: relative;
  color: var(--accent-cyan);
  opacity: 0;
  transform: scale(0.9);
  animation: popIn 0.5s var(--animation-ease) forwards;
  animation-delay: var(--delay, 0.2s);
  display: inline-block;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(5px);
  }
  70% {
    transform: scale(1.05) translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Color específico para ROI */
.highlight-word:nth-child(3) {
  color: var(--accent-teal);
}

/* Efecto hover en palabras destacadas */
.highlight-word::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
  transition: width 0.3s var(--animation-ease);
}

.highlight-word:hover::after {
  width: 100%;
}

/* Efecto glow al hover (consistente con badge) */
.highlight-word:hover {
  text-shadow: 0 0 20px currentColor;
  transition: text-shadow 0.3s var(--animation-ease);
}

/* Soporte para preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .title-line,
  .title-underline,
  .hero-description,
  .highlight-word {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  
  .title-underline {
    width: 120px;
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .title-line:nth-child(1),
  .title-line:nth-child(2),
  .title-line:nth-child(3) {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .hero-description {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }
  
  .title-underline {
    height: 1px;
    bottom: -4px;
  }
}

@media (max-width: 640px) {
  .title-line:nth-child(1),
  .title-line:nth-child(2),
  .title-line:nth-child(3) {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

/* Modo oscuro */
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #e2e8f0;
    --text-medium: #94a3b8;
  }
  
  .title-line:nth-child(1) {
    color: var(--text-dark);
  }
  
  .highlight-word:hover {
    text-shadow: 0 0 15px currentColor;
  }
}

/* Optimización de rendimiento */
.title-line,
.highlight-word {
  will-change: transform, opacity;
}

/* Animación de entrada para el contenedor completo */
.hero-content {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Variables CSS para animaciones */
:root {
  --accent-cyan: #0066cc;
  --accent-teal: #0d9488;
  --highlight-border: linear-gradient(45deg, var(--accent-cyan), var(--accent-teal));
  --highlight-opacity: 0;
  --border-width: 0px;
}

/* Clase de animación profesional */
.highlighting {
  position: relative;
  z-index: 20;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Overlay sutil para highlight */
.service-highlight-overlay {
  position: absolute;
  inset: -2px;
  border-radius: 1rem;
  background: linear-gradient(45deg, 
    rgba(0, 103, 204, 0.1), 
    rgba(13, 148, 136, 0.1));
  pointer-events: none;
  z-index: -1;
  opacity: 0;
}

/* Borde animado con pseudo-elemento */
.glass-card-core.highlighting::before {
  content: '';
  position: absolute;
  inset: calc(-1 * var(--border-width));
  border-radius: calc(1rem + var(--border-width));
  background: var(--highlight-border);
  z-index: -1;
  opacity: var(--highlight-opacity);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Efecto de elevación sutil */
.glass-card-core.highlighting {
  transform: translateY(-4px);
  box-shadow: 
    0 20px 25px -5px rgba(0, 103, 204, 0.1),
    0 10px 10px -5px rgba(0, 103, 204, 0.04),
    0 0 0 1px rgba(0, 103, 204, 0.1) !important;
}

/* Animación de entrada para tarjetas en vista */
.glass-card-core.in-view {
  animation: cardEntrance 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes cardEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación lazy para contenido */
.lazy-animated {
  animation: contentReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes contentReveal {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efecto hover mejorado para enlaces */
.specialty-link {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialty-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-teal));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.specialty-link:hover {
  transform: translateY(-2px);
}

/* Smooth scrolling para toda la página */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .highlighting,
  .specialty-link,
  .glass-card-core {
    animation: none !important;
    transition: none !important;
  }
}

/* Indicador visual para elementos navegados */
:target {
  scroll-margin-top: 120px; /* Compensa el header fijo si lo tienes */
}

/* Feedback táctil para móviles */
@media (hover: none) and (pointer: coarse) {
  .specialty-link:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  .glass-card-core.highlighting:active {
    transform: scale(0.99);
  }
}

/* Asegurar accesibilidad */
.specialty-link:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
  border-radius: 0.75rem;
}

/* Performance optimizations */
.will-change-transform {
  will-change: transform;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.animate-spin-slow {
  animation: spin-slow 10s linear infinite;
}


/* ===== LOGO (Premium) ===== */
.sc-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.sc-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;

  /* Look elegante */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.sc-logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
  transform: translateZ(0);
}

.sc-logo:hover .sc-logo-mark {
  border-color: rgba(34, 211, 238, 0.22);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.28),
    0 0 0 3px rgba(34, 211, 238, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  transform: translateY(-1px);
  transition: 200ms ease;
}

.sc-logo:hover .sc-logo-icon {
  transform: scale(1.03);
  transition: 200ms ease;
}

/* Responsive: reduce isotipo un poco en pantallas pequeñas */
@media (max-width: 420px) {
  .sc-logo-mark { width: 40px; height: 40px; border-radius: 12px; }
  .sc-logo-icon { width: 26px; height: 26px; }
}


<style>
/* ============================
   SISTEMA DE ARTÍCULOS CLAROS
   ============================ */

/* Variables de tema por artículo */
.softcorp-article-light {
  --article-bg: var(--color-bg-card);
  --article-border: var(--color-border-light);
  --article-text: var(--color-text-dark);
  --article-text-secondary: var(--color-text-medium);
  --article-shadow: var(--shadow-lg);
  --article-glow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  
  /* Colores específicos por tema */
  --article-accent: #06b6d4;
  --article-accent-light: #cffafe;
  --article-accent-dark: #0891b2;
  --article-glow-color: rgba(6, 182, 212, 0.2);
}

/* Sistema de temas por color */
.softcorp-article-light[data-theme="cyan"] {
  --article-accent: #06b6d4;
  --article-accent-light: #cffafe;
  --article-accent-dark: #0891b2;
  --article-glow-color: rgba(6, 182, 212, 0.2);
}

.softcorp-article-light[data-theme="teal"] {
  --article-accent: #0d9488;
  --article-accent-light: #ccfbf1;
  --article-accent-dark: #0f766e;
  --article-glow-color: rgba(13, 148, 136, 0.2);
}

.softcorp-article-light[data-theme="indigo"] {
  --article-accent: #4f46e5;
  --article-accent-light: #e0e7ff;
  --article-accent-dark: #4338ca;
  --article-glow-color: rgba(79, 70, 229, 0.2);
}

.softcorp-article-light[data-theme="amber"] {
  --article-accent: #d97706;
  --article-accent-light: #fef3c7;
  --article-accent-dark: #b45309;
  --article-glow-color: rgba(217, 119, 6, 0.2);
}

.softcorp-article-light[data-theme="purple"] {
  --article-accent: #7c3aed;
  --article-accent-light: #f3e8ff;
  --article-accent-dark: #6d28d9;
  --article-glow-color: rgba(124, 58, 237, 0.2);
}

.softcorp-article-light[data-theme="blue"] {
  --article-accent: #2563eb;
  --article-accent-light: #dbeafe;
  --article-accent-dark: #1d4ed8;
  --article-glow-color: rgba(37, 99, 235, 0.2);
}

.softcorp-article-light[data-theme="rose"] {
  --article-accent: #db2777;
  --article-accent-light: #fce7f3;
  --article-accent-dark: #be185d;
  --article-glow-color: rgba(219, 39, 119, 0.2);
}

/* Estructura base del artículo claro */
.softcorp-article-light {
  position: relative;
  height: 600px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 2.5rem;
  overflow: hidden;
  background: var(--article-bg);
  border: 1px solid var(--article-border);
  box-shadow: var(--article-shadow);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
}

.softcorp-article-light:hover {
  transform: translateY(-8px);
  box-shadow: 
    var(--article-glow),
    0 25px 50px -15px var(--article-glow-color);
  border-color: var(--article-accent);
}

/* Efectos de fondo sutiles */
.article-light-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.8;
  background: 
    radial-gradient(circle at 0% 0%, var(--article-accent-light) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, var(--color-secondary) 0%, transparent 50%);
}

/* Patrón de grid sutil */
.article-light-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--color-border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border-light) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.8), transparent);
}

/* Borde animado elegante */
.article-light-border {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    135deg,
    transparent 40%,
    var(--article-accent) 50%,
    transparent 60%
  );
  background-size: 300% 300%;
  mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.softcorp-article-light:hover .article-light-border {
  opacity: 1;
  animation: shimmer 3s ease-in-out infinite;
}

/* Contenido principal */
.article-light-content {
  position: relative;
  z-index: 20;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 100%
  );
}

/* Header del artículo */
.article-light-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.article-light-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--article-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--article-accent-light);
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.article-light-indicators {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.article-light-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: var(--article-accent);
  opacity: 0.6;
}

.article-light-dot:nth-child(1) {
  animation: pulse-glow 1.2s ease-in-out infinite;
}

.article-light-dot:nth-child(2) {
  opacity: 0.4;
  animation: pulse-glow 1.2s ease-in-out infinite 0.3s;
}

/* Icono principal mejorado */
.article-light-icon-container {
  position: relative;
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1.5rem;
}

.article-light-icon-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle at center, var(--article-accent) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.15;
}

.article-light-icon {
  position: relative;
  width: 100%;
  height: 100%;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 25px -5px rgba(0, 0, 0, 0.1),
    inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.softcorp-article-light:hover .article-light-icon {
  transform: scale(1.1) rotate(10deg);
  border-color: var(--article-accent);
  box-shadow: 
    0 15px 30px -5px rgba(0, 0, 0, 0.15),
    0 0 30px var(--article-glow-color),
    inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.article-light-icon i {
  font-size: 2.5rem;
  color: var(--article-accent);
  transition: all 0.3s ease;
}

.softcorp-article-light:hover .article-light-icon i {
  transform: scale(1.1);
}

/* Título y descripción */
.article-light-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.article-light-title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--article-accent), var(--article-accent-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  margin-top: 0.25rem;
}

.article-light-description {
  color: var(--color-text-medium);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 22rem;
  margin: 0 auto;
  font-weight: 400;
  padding: 0 1rem;
}

/* Stats del artículo */
.article-light-stats {
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
}

.article-light-stats-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.article-light-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.article-light-stat-item {
  padding: 0.85rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.article-light-stat-item:hover {
  border-color: var(--article-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

.article-light-stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--article-accent);
  margin-bottom: 0.25rem;
}

.article-light-stat-label {
  font-size: 0.65rem;
  color: var(--color-text-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Botón elegante */
.article-light-button {
  width: 100%;
  padding: 1rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, var(--article-accent), var(--article-accent-dark));
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-light-button:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.15),
    0 0 20px var(--article-glow-color);
}

.article-light-button:active {
  transform: translateY(0);
}

.article-light-button-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.article-light-button i {
  transition: transform 0.3s ease;
}

.article-light-button:hover i {
  transform: translateX(3px);
}

/* Gráficos animados */
.article-light-chart {
  background: white;
  border-radius: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.article-light-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.article-light-chart-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--article-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.article-light-chart-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.article-light-chart-bars {
  display: flex;
  gap: 0.4rem;
  height: 3rem;
  align-items: flex-end;
}

.article-light-chart-bar {
  flex: 1;
  border-radius: 0.5rem 0.5rem 0.25rem 0.25rem;
  background: linear-gradient(to top, 
    var(--article-accent-dark), 
    var(--article-accent));
  opacity: 0.7;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom;
}

.softcorp-article-light:hover .article-light-chart-bar:nth-child(1) { 
  height: 85%; 
  animation-delay: 0.1s; 
}
.softcorp-article-light:hover .article-light-chart-bar:nth-child(2) { 
  height: 100%; 
  animation-delay: 0.2s; 
}
.softcorp-article-light:hover .article-light-chart-bar:nth-child(3) { 
  height: 65%; 
  animation-delay: 0.3s; 
}
.softcorp-article-light:hover .article-light-chart-bar:nth-child(4) { 
  height: 95%; 
  animation-delay: 0.4s; 
}
.softcorp-article-light:hover .article-light-chart-bar:nth-child(5) { 
  height: 75%; 
  animation-delay: 0.5s; 
}

/* Features list */
.article-light-features {
  background: white;
  border-radius: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.article-light-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
}

.article-light-feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--article-accent);
  flex-shrink: 0;
  position: relative;
}

.article-light-feature-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--article-accent);
  opacity: 0.2;
  animation: pulse-ring 2s ease-in-out infinite;
}

.article-light-feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--color-text-medium);
  font-weight: 500;
}

/* Status grid */
.article-light-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.article-light-status-item {
  padding: 0.85rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.article-light-status-item:hover {
  border-color: var(--article-accent);
  transform: translateY(-2px);
}

.article-light-status-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--article-accent);
  margin-bottom: 0.25rem;
}

.article-light-status-label {
  font-size: 0.65rem;
  color: var(--color-text-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Avatares elegantes */
.article-light-avatars {
  display: flex;
  justify-content: center;
  gap: -0.75rem;
  margin-bottom: 1.5rem;
}

.article-light-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--article-accent), var(--article-accent-dark));
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.article-light-avatar:nth-child(1) { 
  z-index: 3;
  animation: float-avatar 3s ease-in-out infinite; 
}
.article-light-avatar:nth-child(2) { 
  z-index: 2;
  animation: float-avatar 3s ease-in-out infinite 0.2s; 
}
.article-light-avatar:nth-child(3) { 
  z-index: 1;
  animation: float-avatar 3s ease-in-out infinite 0.4s; 
}

.article-light-avatar:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 4;
}

/* Línea animada sutil */
.article-light-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--article-accent) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(0);
  transform-origin: center;
}

.softcorp-article-light:hover .article-light-bottom-line {
  opacity: 1;
  transform: scaleX(1);
}

/* Animaciones específicas */
@keyframes float-avatar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.3; }
  100% { transform: scale(2); opacity: 0; }
}

@keyframes shimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .softcorp-article-light {
    height: 560px;
    border-radius: 2rem;
    max-width: 100%;
  }
  
  .article-light-content {
    padding: 1.5rem;
  }
  
  .article-light-title {
    font-size: 1.8rem;
  }
  
  .article-light-icon-container {
    width: 6rem;
    height: 6rem;
  }
}
</style>

