body {
  background-color: #f8f9fa;
}

header,
footer {
  padding: 1rem;
  background-color: #007bff;
  color: white;
  text-align: center;
}

/* Modal Fullscreen Gamificado */
.modal-mascote-fullscreen {
  background: radial-gradient(#111, #000);
  border: none;
  padding: 2rem;
  text-align: center;
}

.badge-lendario {
  background: linear-gradient(45deg, #ffd700, #ff9900);
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 0 10px #ffc107;
}

.mascote-neon-img {
  max-height: 260px;
  filter: drop-shadow(0 0 12px #ffc107);
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.mascote-nome {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.mascote-desc {
  font-size: 1rem;
  max-width: 90%;
  margin: 0 auto 1rem;
}

.mascote-pontos {
  font-size: 1.8rem;
  font-weight: bold;
}

/* Efeito neon para imagem lendária */
.mascote-lendario-bg {
  background: radial-gradient(#000000, #1a1a1a);
  position: relative;
  overflow: hidden;
}

.mascote-lendario-bg::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  animation: particles 6s linear infinite;
  pointer-events: none;
}

@keyframes particles {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }

  100% {
    transform: rotate(360deg) scale(1.2);
    opacity: 0.7;
  }
}

.mascote-neon-img {
  max-height: 260px;
  filter: drop-shadow(0 0 10px #ffe600) drop-shadow(0 0 20px #ffd700);
  z-index: 2;
}

.modal-mascote-fullscreen {
  background-color: #000;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 0;
  padding: 2rem;
}

.mascote-nome {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
}

.mascote-desc {
  color: #ccc;
  margin: 0.5rem auto 1.5rem;
  max-width: 300px;
  font-size: 1rem;
}

.mascote-pontos {
  font-size: 2rem;
  font-weight: bold;
  color: #2bff2b;
  animation: pulse-points 1.5s infinite;
}

@keyframes pulse-points {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.badge-lendario {
  display: inline-block;
  background: linear-gradient(to right, #ffd700, #fff200);
  color: #000;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-size: 1rem;
  animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px #fff200;
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffd700;
  }
}

.modal-mascote-fullscreen .btn-close {
  display: none;
}

.modal-mascote-fullscreen .btn-fechar {
  background-color: #fff200;
  border: none;
  font-weight: bold;
  padding: 0.6rem 1.5rem;
  margin-top: 2rem;
  border-radius: 30px;
  color: #000;
  transition: all 0.3s ease;
}

.modal-mascote-fullscreen .btn-fechar:hover {
  background-color: #ffe600;
  transform: scale(1.05);
}