/* ================== GLOBAL ================== */
* {
  box-sizing: border-box;
}

body,
.header {
  background: #000a15;
}

body {
  margin: 0;
  color: #fff;
  font-family: Poppins, sans-serif;
}

i.active {
  color: #007fdb; /* só o ícone fica azul */
}


/* ================== HEADER ================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.logo {
  font-family: Orbitron, sans-serif;
  font-size: 18px;
  color: #0ff;
}

.saldo-depositar {
  display: flex;
  align-items: center;
  gap: 5px;
}

.saldo {
  background: #121419;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 13px;
}

.btn-depositar {
  background: #007fdb;
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

/* ================== BANNERS ================== */
.banners,
.container,
.raspadinha-info {
  padding: 10px;
}

.banner {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 0;
}

/* ================== GANHADORES ================== */
.ganhadores {
  background: #111;
  padding: 0;
  border-radius: 12px;
  margin: 15px;
  color: #fff;
  font-family: Arial, sans-serif;
}

.ganhadores h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
}

.ganhador {
  background: #1a1a1a;
  border-left: 5px solid #00c20f;
  border-radius: 10px;
  padding: 18px 25px;
  margin-bottom: 12px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  animation: 0.7s ease-out forwards fadeInSlide;
}

.ganhador:hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px #007fdb;
}

.ganhador strong {
  color: #fff;
  font-weight: 700;
}

.ganhador span {
  color: #0f6;
  font-weight: 700;
}

.ganhador small {
  display: block;
  color: #aaa;
  font-size: 12px;
  margin-top: 5px;
}

.ganhador::before {
  content: "🏆";
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 18px;
  animation: 1.5s ease-in-out infinite brilho;
}

/* Animações */
@keyframes fadeInSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brilho {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* ================== CTA ================== */
.cta-bloco {
  background: #121419;
  padding: 20px;
  margin: 10px;
  border-radius: 12px;
  text-align: center;
}

.cta-bloco h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.cta-bloco p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #ccc;
}

/* ================== BOTÕES ================== */
.btn-jogar,
a.btn-jogar {
  background: #007fdb;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
  display: block;
  color: #1a1a1a;
  font-weight: 700;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
}

.btn-jogar {
  font-size: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-family: Poppins, sans-serif;
  color: #121419;
  border: none;
}

.btn-jogar-mini {
  background: red;
  color: #fff;
  padding: 5px 12px;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
}

/* ================== RASPADINHAS ================== */
/* Container das raspadinhas */
.raspadinha-lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 10px;
}

/* Card */
.raspadinha-card {
  background: #000b17;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px #00000055;
  text-align: center;
  padding: 0;
  position: relative; /* importante para sobreposição */
}

/* Imagem menor */
.raspadinha-card img {
  width: 80%;
  max-width: 140px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Label de valor */
.valor-label {
  position: absolute;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  padding: 3px 6px;
  top: 5px;
  right: 0;
  border-radius: 4px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

/* Novo título sobre a imagem */
.raspadinha-titulo {
  position: absolute;
  bottom: 5px;            /* fica embaixo da imagem */
  left: 50%;              /* centralizar */
  transform: translateX(-50%);
  background: #000000; /* fundo azul com transparência */
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 0px;
  border-radius: 4px;
  font-family: Poppins, sans-serif;
  text-align: center;
  min-height: 20px;       /* você pode controlar altura aqui */
  line-height: 1.2;
  white-space: nowrap;

}

/* Texto extra */
.premio-max {
  color: orange;
  font-size: 12px;
  margin-top: 5px;
}

.raspadinha-nome {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 5px;
}


/* ================== RODAPÉ ================== */
.rodape-info {
  background: #000a15;
  padding: 20px;
  color: #aaa;
  margin-bottom: 80px;
  font-size: 13px;
}

.rodape-logo {
  font-family: Orbitron, sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.rodape-info h4 {
  color: #fff;
  margin: 15px 0 5px;
}

.rodape-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rodape-info ul li {
  margin-bottom: 5px;
}

.rodape-info a {
  color: #aaa;
  font-size: 13px;
  text-decoration: none;
}

.rodape-info a:hover {
  text-decoration: underline;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #000000de;
  display: flex;
  justify-content: space-around;
  padding: 9px 0;
  border-top: 1px solid #222;
  z-index: 10;
}

.footer a {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  color: #aaa;
}



.footer a.active {
  color: #007fdb;
}

/* 🔹 Destaque do botão Depositar */
.footer a.deposito-btn {
  position: relative;
  margin-top: -20px; /* faz ele "subir" acima do footer */
  background: #007fdb; /* cor do círculo */
  color: #fff !important;
  border-radius: 50%;
  width: 60px;  /* tamanho do círculo */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  font-size: 13px;
  flex-direction: column;
  gap: 2px;
  transition: 0.3s;
}

.footer a.deposito-btn i {
  font-size: 20px; /* tamanho do ícone dentro */
}

.footer a.deposito-btn:hover {
  background: #0095ff; /* cor ao passar mouse */
  transform: scale(1.05);
}


/* ================== RESPONSIVIDADE ================== */
@media (max-width: 480px) {
  .cta-bloco h3,
  .logo {
    font-size: 16px;
  }

  .btn-depositar {
    font-size: 15px;
    padding: 5px 10px;
  }

  .saldo {
    font-size: 15px;
  }

  .cta-bloco p,
  .ganhador,
  .rodape-info h4 {
    font-size: 13px;
  }

  .footer a {
    font-size: 15px;
  }

  .btn-jogar {
    font-size: 14px;
    padding: 10px 95px;
  }

  .rodape-info {
    font-size: 12px;
  }

  .raspadinha-info {
    grid-template-columns: 1fr;
  }
}

/* ====== como funciona ======== */

.como-funciona-container {
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  margin: 20px auto;
  color: #fff;
  font-family: Poppins, sans-serif;
  text-align: center;
}

.como-funciona-container h2 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #007fdb;
}

.como-funciona-container h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

.como-funciona-container p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

.passo {
  margin-bottom: 25px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.passo h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #ffffff;
}

.passo p {
  font-size: 13px;
  color: #ddd;
  margin-bottom: 10px;
}

.passo img {
  width: 90%;       /* 👈 controla o tamanho da imagem */
  max-width: 250px; /* 👈 limite no desktop */
  height: auto;
  border-radius: 8px;
}

