/* ================== 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;
  max-width: 1200px;
  margin: 0 auto;
}

/* Layout desktop para header */
@media (min-width: 768px) {
  .header {
    padding: 15px 30px;
  }
  
  .logo {
    font-size: 22px;
  }
  
  .saldo {
    font-size: 16px;
    padding: 8px 15px;
  }
  
  .btn-depositar {
    font-size: 16px;
    padding: 10px 20px;
  }
  
  /* Adicionar navegação desktop */
  .header::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #007fdb, transparent);
  }
  
  .header {
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  /* Melhorar títulos das seções */
  .container h2 {
    font-size: 24px !important;
    margin: 30px 0 20px 0 !important;
    text-align: left !important;
    color: #fff !important;
  }
  
  .container h2 i {
    margin-right: 10px !important;
    font-size: 22px !important;
  }
}

.logo {
  font-family: Orbitron, sans-serif;
  font-size: 18px;
  color: #0ff;
}

.saldo-depositar {
  display: flex;
  align-items: center;
  gap: 5px;
}

.valor-label {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px;
  top: 8px;
  right: 5px;
  border-radius: 4px;
  font-family: Poppins, sans-serif;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.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 {
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.container,
.raspadinha-info {
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.banner {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Layout desktop para banners */
@media (min-width: 768px) {
  .banners {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 20px !important;
    padding: 20px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
  }
  
  .banners a {
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    transition: transform 0.3s ease !important;
    position: relative !important;
  }
  
  .banners a:hover {
    transform: translateY(-5px) !important;
  }
  
  .banners .banner {
    width: 100% !important;
    height: auto !important;
    min-height: 180px !important;
    object-fit: contain !important;
    border-radius: 15px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    margin-bottom: 0 !important;
  }
}

/* ================== 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: 10px;
  padding: 8px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: start;
}

/* Layout desktop para raspadinhas */
@media (min-width: 768px) {
    .raspadinha-lista {
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
      gap: 10px !important;
      padding: 20px !important;
      justify-content: start !important;
      justify-items: start !important;
  }
    
  .raspadinha-card {
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    transition: transform 0.3s ease !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }
  
  .raspadinha-card:hover {
    transform: scale(1.05) !important;
  }

  .valor-label {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 8px;
    top: 8px;
    right: 5px;
    border-radius: 4px;
    font-family: Poppins, sans-serif;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}
  
  .raspadinha-card img {
    width: 100% !important;
    max-width: 250px ;
    height: 200px ;
    object-fit: cover ;
    margin: 0 auto !important;
    border-radius: 10px !important;
  }
}

/* Layout mobile para raspadinhas */
@media (max-width: 767px) {
  .raspadinha-card {
    width: 100%;
    max-width: 200px;
    height: 280px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    text-align: center;
    padding: 0;
    position: relative;
    margin: 0 auto;
  }

  .raspadinha-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
  }

  .raspadinha-titulo {
    position: absolute;
    bottom: 60px !important;
    margin-bottom: 0px !important;
    left: 4px !important;
    right: 4px !important;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-size: 10px !important;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: Poppins, sans-serif;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow: hidden;
}

  .raspadinha-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

/* Título do prêmio */
.raspadinha-titulo {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Nome do pacote */
.raspadinha-nome {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* Badge do prêmio - parte inferior com ícone */
.raspadinha-titulo {
  position: absolute;
  bottom: 50px;
  left: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: Poppins, sans-serif;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow: hidden;
}

/* Adicionar imagem de presente antes do texto do prêmio */
.raspadinha-titulo::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url('../images/gift.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 4px;
  vertical-align: middle;
}

/* Remover elementos não utilizados */
.premio-max {
  display: none;
}


/* ================== RODAPÉ ================== */
.rodape-info {
  background: #000a15;
  padding: 20px;
  color: #aaa;
  margin-bottom: 80px;
  font-size: 13px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.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);
}

/* Layout desktop para rodapé */
@media (min-width: 768px) {
  .rodape-info {
    padding: 40px;
    margin-bottom: 0;
    font-size: 14px;
    text-align: center;
  }
 
  
  .rodape-logo {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  /* Ocultar footer fixo no desktop */
  .footer {
    display: none;
  }
}


/* ================== 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;
  }

  .deposito-btn div i{
    color: black;
  }

  .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: 1200px;
  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;
}

/* Layout desktop para Como Funciona */
@media (min-width: 768px) {
  .como-funciona-container {
    padding: 40px;
  }

  .deposito-btn div i{
    color: black;
  }
  
  .como-funciona-container h2 {
    font-size: 18px;
  }
  
  .como-funciona-container h3 {
    font-size: 32px;
    margin-bottom: 25px;
  }
  
  .como-funciona-container p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .passo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
  }
  
  .passo:nth-child(even) {
    grid-template-columns: 1fr 1fr;
  }
  
  .passo:nth-child(even) img {
    order: -1;
  }
  
  .passo h4 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .passo p {
    font-size: 16px;
    margin-bottom: 0;
  }
  
  .passo img {
    width: 100%;
    max-width: 400px;
  }
}

