body {
  background: #f7f7f7;
  padding-bottom: 90px; /* espaço pro footer não cobrir conteúdo */
}

/* GRUPOS */
.grupo-A { background: #f8eded; }
.grupo-B { background: #edf7f6; }
.grupo-C { background: #fef6e4; }
.grupo-D { background: #eef1ff; }
.grupo-E { background: #f1f8e9; }
.grupo-F { background: #fff0f5; }
.grupo-G { background: #f0f4ff; }
.grupo-H { background: #fef9f0; }
.grupo-I { background: #f3f8ff; }
.grupo-J { background: #fdf0f0; }
.grupo-K { background: #f4fff8; }
.grupo-L { background: #fff8f0; }

/* CORES */
.inicio { background: #fef6e4; }
.extras { background: #f8eded; }

/* CARD */
.team-card {
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
}

/* INFO */
.team-info {
  display: flex;
  flex-direction: column;
}

.team-name {
  font-weight: 600;
}

.page {
  font-size: 12px;
  color: #555;
}

/* FIGURINHA */
.sticker {
  width: 42px;
  height: 42px;
  margin: 4px;
  border-radius: 8px;
  border: none;
  background: #ddd;
  font-weight: bold;
}

.sticker.owned {
  background: black;
  color: white;
}

/* COMPLETO */
.complete-opacity {
  opacity: 0.35;
  filter: grayscale(40%);
}

/* PROGRESSO */
.progress {
  height: 8px;
  margin-top: 10px;
}

.progress-bar {
  background: black;
}

/* BOTÕES */
.btn-dark {
  background: black;
  border: none;
}

.btn-dark:hover {
  background: #333;
}

/* MOBILE */
@media (max-width: 768px) {
  .team-info {
    margin-bottom: 5px;
  }

  .page {
    font-size: 11px;
  }
}

/* FOOTER FIXO */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}

/* BOTÕES DO FOOTER */
.footer .btn-dark {
  min-width: 110px;
}

.code-box {
  font-size: 12px;
  word-break: break-all;
  background: #eee;
  padding: 6px;
  margin: 5px auto;
  width: 90%;
  border-radius: 6px;
  cursor: pointer;
}

.eye-btn {
  width: 22px;
  height: 22px;
  border: 2px solid black;
  border-radius: 50%;
  position: relative;
  background: transparent;
  cursor: pointer;
}

.eye-btn::after {
  content: "";
  width: 6px;
  height: 6px;
  background: black;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.eye-btn.closed {
  border-radius: 2px;
}

.eye-btn.closed::after {
  width: 12px;
  height: 2px;
}
