/* ======================================== ANIMACIONES - SEIHI.DEV ======================================== */@keyframes fadeInUp { from { opacity:0;transform:translateY(30px); } to { opacity:1;transform:translateY(0); }  } @keyframes slideInLeft { from { opacity:0;transform:translateX(-30px); } to { opacity:1;transform:translateX(0); }  } @keyframes glow { 0%,100% { box-shadow:0 0 10px rgba(0,255,204,0.3); } 50% { box-shadow:0 0 20px rgba(0,255,204,0.6); }  } @keyframes cyberpunk-flicker { 0%,18%,22%,25%,54%,56%,100% { opacity:1; } 20%,24%,55% { opacity:0.8; }  } section { animation:fadeInUp 0.8s ease-out; } .platform-card { animation:slideInLeft 0.6s ease-out backwards; } .platform-card:nth-child(1) { animation-delay:0.1s; } .platform-card:nth-child(2) { animation-delay:0.2s; } .platform-card:nth-child(3) { animation-delay:0.3s; } .platform-card:nth-child(4) { animation-delay:0.4s; } .section-title { animation:fadeInUp 0.8s ease-out; } 