/* ==========================================
   Orçamento de performance — mobile / prefers-reduced-motion
   walking-platforms.html
   ========================================== */

/* Faixa de linguagens: menos blur nos cartões (mobile) — diamond glass igual ao desktop */
@media (max-width: 768px) {
  .tech-language-item {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* prefers-reduced-motion: parar marquee e brilho contínuo */
@media (prefers-reduced-motion: reduce) {
  .tech-languages-track {
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }

  .hero-brands-glow {
    animation: none !important;
  }
}
