.hero > img {
  transform-origin: 68% 48%;
  animation:
    cleiton-entrance 1.35s cubic-bezier(.2, .72, .2, 1) both,
    cleiton-motion 10s 1.35s ease-in-out infinite alternate;
  will-change: transform, filter;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 181, 50, .12) 49%, transparent 62%);
  transform: translateX(-130%);
  animation: arena-light 8s 2.2s ease-in-out infinite;
}

@keyframes cleiton-entrance {
  from {
    opacity: 0;
    transform: scale(1.12) translateY(12px);
    filter: blur(7px) brightness(.72);
  }
  to {
    opacity: 1;
    transform: scale(1.03) translateY(0);
    filter: blur(0) saturate(1.05) contrast(1.03);
  }
}

@keyframes cleiton-motion {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
    filter: saturate(1.04) contrast(1.03) brightness(1);
  }
  to {
    transform: scale(1.075) translate3d(-5px, -3px, 0);
    filter: saturate(1.09) contrast(1.04) brightness(1.04);
  }
}

@keyframes arena-light {
  0%, 62% { transform: translateX(-130%); opacity: 0; }
  72% { opacity: 1; }
  88%, 100% { transform: translateX(130%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero > img,
  .hero::after {
    animation: none;
  }
}

@media (max-width: 620px) {
  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 1024 / 470;
  }

  .hero > img {
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 14%;
    transform-origin: 68% 44%;
  }
}

@media (max-width: 420px) {
  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 1024 / 470;
  }

  .hero > img {
    object-position: center 13%;
  }
}
