/* Adições para os avatares de prêmios na Home */
.prize-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 20px;
}

.prize-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-cyan);
  margin-left: -15px; /* Efeito de sobreposição */
  background: #fff;
  position: relative;
  transition: transform 0.2s, z-index 0.2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.prize-item:first-child {
  margin-left: 0;
}

.prize-item:hover {
  transform: scale(1.2) translateY(-5px);
  z-index: 10;
  border-color: var(--primary-pink);
}

.prize-item img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ajustado para contain para ver o produto inteiro */
  padding: 2px;
}

.prize-plus {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-left: -10px;
  backdrop-filter: blur(5px);
}

.prize-text {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 25px;
  font-weight: 500;
}
