/* HERO-CTA
   Pulso de carregamento do botao 'Comecar a jogar'. */

/* O pulso acelera de 1,8 s até 0,65 s enquanto o botão está em destaque. */ @media(hover:hover) and (pointer:fine) {
  body:not(.effects-off) .hero-actions .button-primary:hover {
    animation:start-charge 6s linear, start-pulse .65s ease-in-out 6s infinite;
  }
}
body:not(.effects-off) .hero-actions .button-primary:focus-visible {
  animation:start-charge 6s linear, start-pulse .65s ease-in-out 6s infinite;
}
@keyframes start-charge {
  0%,30%,54%,73%,88%,100% {
    transform:translateY(-2px) scale(1);
    box-shadow:0 8px 30px #b72b4035,inset 0 0 0 #ff8b8b00
  }
  15%,42%,63.5%,80.5%,94% {
    transform:translateY(-2px) scale(1.045);
    box-shadow:0 8px 45px #ec304878,0 0 18px #ff586338,inset 0 0 15px #ff8b8b28
  }
}
@keyframes start-pulse {
  0%,100% {
    transform:translateY(-2px) scale(1);
    box-shadow:0 8px 30px #b72b4035,inset 0 0 0 #ff8b8b00
  }
  50% {
    transform:translateY(-2px) scale(1.045);
    box-shadow:0 8px 45px #ec304878,0 0 18px #ff586338,inset 0 0 15px #ff8b8b28
  }
}
