:root {
  --primary: #0d6efd;
  --secondary: #6610f2;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(13,110,253,0.9), rgba(102,16,242,0.9)), url('../images/icone_jogo.png') no-repeat right bottom/contain;
  color: #fff;
  padding: 4rem 0 2rem;
}

.store-badges img {
  height: 28px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,110,253,0.1);
  color: var(--primary);
}

.lottie-box {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.card-hover {
  transition: transform .2s ease, box-shadow .2s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.175);
}


