/* version=3.3.1 */
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=REM:wght@100;200;300;400;500;600;700;800;900&display=swap");
html {
  overflow: hidden;
}

:root {
  --first-color: #fff4e6; /* Laranja muito claro */
  --second-color: #ffa94d; /* Laranja médio */
  --third-color: #ff922b; /* Laranja vivo */
  --fourth-color: #ff6101; /* Laranja intenso */
  --fifth-color: #e85d04; /* Laranja queimado */
  --sixth-color: #d9480f; /* Laranja escuro */
  --seventh-color: #f76707; /* Laranja vibrante */
  --eighth-color: #ff6b00; /* Laranja avermelhado */
  --ninth-color: #ffb347; /* Laranja pastel */
  --tenth-color: #cc5803; /* Laranja terroso */
  --eleventh-color: #f97316; /* Laranja médio-claro */
  --twelfth-color: #fd7e14; /* Laranja forte */
  --thirteenth-color: #994d00; /* Laranja escuro queimado */
  --fourteenth-color: #ff8c00; /* Laranja outonal */
  --fifteenth-color: #ffc078; /* Laranja claro suave */
  --sixteenth-color: #ffd43b; /* Amarelo-alaranjado */
  --seventeenth-color: #e8590c; /* Laranja denso */
  --eighteenth-color: #b34700; /* Laranja escuro sólido */
  --nineteenth-color: #a33c00; /* Laranja puxado para marrom */
  --twentieth-color: #803300; /* Marrom alaranjado */
  --twenty-first-color: #4d2600; /* Marrom escuro com toque de laranja */
}

body {
  background: black;
  background-position: top;
  background-size: cover;
  overflow: auto;
  padding-bottom: 0;
  min-height: 100vh;
}
.main {
  padding-bottom: 150px !important;
}
/* Animação do giro do degradê */
.premio {
  overflow: hidden;
}

/* Efeito de brilho em movimento */

.premio::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateY(-50%);
  animation: shine 10s infinite;
}

.acumulado {
  overflow: visible;
}

.acumulado::before {
  display: none;
}

/* Definindo o delay para cada item (intervalo entre animações) */
.proximos .linha .premio:nth-child(1)::before {
  animation-delay: 0s;
  /* Nenhum intervalo para o primeiro */
}

.proximos .linha .premio:nth-child(2)::before {
  animation-delay: 1s;
  /* Intervalo de 0.5 segundos para o segundo */
}

.proximos .linha .premio:nth-child(3)::before {
  animation-delay: 2s;
  /* Intervalo de 1 segundo para o terceiro */
}

.proximos .linha .premio:nth-child(4)::before {
  animation-delay: 3s;
  /* Intervalo de 1.5 segundos para o quarto */
}

.proximos .linha .premio:nth-child(5)::before {
  animation-delay: 4s;
  /* Intervalo de 2 segundos para o quinto */
}

/* Animação do brilho indo da esquerda para a direita */
@keyframes shine {
  0% {
    opacity: 0;
    left: -200%;
  }

  5% {
    opacity: 1;
    left: -100%;
  }

  10% {
    opacity: 1;
    left: 100%;
  }

  15% {
    left: 200%;
    opacity: 0;
  }

  100% {
    left: 200%;
    opacity: 0;
  }
}

@keyframes pulse-ball {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
#comprar .qtd-bt {
  background: white;
  color: var(--fourth-color);
  border: 0.15vw solid var(--fourth-color);
}

#comprar .bt-comprar {
  background: green;
}
#comprar .bt-menos-mais {
  background: var(--twenty-first-color);
  color: white;
}

/**
STYLE COMPRAR
**/
#modal-comprar .div-100 {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

#modal-comprar .div-100r {
  display: flex;
  gap: 10px;
  margin: 5px 0;
}
#modal-comprar .div-100r .input-valor {
  width: 100%;
}
#modal-comprar .div-100r .input-valor input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  font-weight: 500;
  border-radius: 10px;
  background: #efefef;
  padding: 0 10px;
}
#modal-comprar #comprar .qtd-bt {
  background: white;
  color: var(--fourth-color);
  border: 1px solid var(--fourth-color);
  width: 12%;
  border-radius: 10px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#modal-comprar .quadro-qtd {
  display: flex;
  width: 50%;
}

#modal-comprar .quadro-qtd input {
  width: 100%;
  height: 30px;
  text-align: center;
}
#modal-comprar .bt-menos-mais {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#modal-comprar .input-qtd {
  width: 60%;
}
#modal-comprar .menos-mais-esquerda {
  border-radius: 10px 0 0 10px;
}
#modal-comprar .menos-mais-direita {
  border-radius: 0 10px 10px 0;
}

#modal-comprar .div-dir {
  width: 100%;
}
#modal-comprar .div-dir button {
  width: 100%;
  color: white;
  border: none;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cartela {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cartela .numero {
  width: 19%;
  position: relative;
}

.cartela .numero:nth-child(2),
.cartela .numero:nth-child(3),
.cartela .numero:nth-child(4),
.cartela .numero:nth-child(5),
.cartela .numero:nth-child(6) {
  margin-top: 2.3vw !important;
  position: relative;
}

.cartela .numero:nth-child(2)::before,
.cartela .numero:nth-child(3)::before,
.cartela .numero:nth-child(4)::before,
.cartela .numero:nth-child(5)::before,
.cartela .numero:nth-child(6)::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--first-color);
  background: var(--eighth-color);
  border-radius: 0.5vw;
  top: -2.4vw;
}

.coluna-direita
  .bilhete-melhores-cartelas.zoom-cartela-1
  .numero:nth-child(2)::before,
.coluna-direita
  .bilhete-melhores-cartelas.zoom-cartela-1
  .numero:nth-child(3)::before,
.coluna-direita
  .bilhete-melhores-cartelas.zoom-cartela-1
  .numero:nth-child(4)::before,
.coluna-direita
  .bilhete-melhores-cartelas.zoom-cartela-1
  .numero:nth-child(5)::before,
.coluna-direita
  .bilhete-melhores-cartelas.zoom-cartela-1
  .numero:nth-child(6)::before {
  top: -2.5vw !important;
}

.zoom-cartela-1 .cartela .numero:nth-child(2),
.zoom-cartela-1 .cartela .numero:nth-child(3),
.zoom-cartela-1 .cartela .numero:nth-child(4),
.zoom-cartela-1 .cartela .numero:nth-child(5),
.zoom-cartela-1 .cartela .numero:nth-child(6) {
  margin-top: 2.5vw !important;
}

.coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .numero {
  width: 17.9% !important;
}

.coluna-direita
  .bilhete-melhores-cartelas.zoom-cartela-2
  .numero:nth-child(2)::before,
.coluna-direita
  .bilhete-melhores-cartelas.zoom-cartela-2
  .numero:nth-child(3)::before,
.coluna-direita
  .bilhete-melhores-cartelas.zoom-cartela-2
  .numero:nth-child(4)::before,
.coluna-direita
  .bilhete-melhores-cartelas.zoom-cartela-2
  .numero:nth-child(5)::before,
.coluna-direita
  .bilhete-melhores-cartelas.zoom-cartela-2
  .numero:nth-child(6)::before {
  top: -1.9vw !important;
}

.zoom-cartela-2 .cartela .numero:nth-child(2),
.zoom-cartela-2 .cartela .numero:nth-child(3),
.zoom-cartela-2 .cartela .numero:nth-child(4),
.zoom-cartela-2 .cartela .numero:nth-child(5),
.zoom-cartela-2 .cartela .numero:nth-child(6) {
  margin-top: 1.8vw !important;
}

.cartela .numero:nth-child(2)::before {
  content: "S";
}

.cartela .numero:nth-child(3)::before {
  content: "O";
}

.cartela .numero:nth-child(4)::before {
  content: "R";
}

.cartela .numero:nth-child(5)::before {
  content: "T";
}

.cartela .numero:nth-child(6)::before {
  content: "E";
}

.coluna-direita .bilhete-melhores-cartelas .cartela {
  height: auto !important;
}

.cartelas-compradas {
  background-image: none;
  background: var(--fourth-color);
  color: white;
}

.esquerda .premios .premio .value {
  margin-top: 0.5vw !important;
}

.esquerda .premios .acumulado .label {
  font-size: 1.2vw;
  padding-right: 1vw;
}
.esquerda .centro .sorteio-bolas .info .box .value {
  padding-top: 2.3vw;
}

.proximos .linha:first-child {
  background: rgba(255, 255, 255, 1);
  margin-bottom: 0.5vw;
}

.proximos .info .label {
  color: var(--fourth-color);
}

.proximos .info:nth-child(1) .value,
.proximos .info .value {
  color: black;
}

.proximos .premio {
  background: var(--fourth-color);
  border: 0.2vw solid var(--first-color);
  color: white;
}

.proximos .acumulado {
}

.espera .relogio {
  height: auto;
  padding: 1vw;
  width: calc(100% - 4vw);
  background: var(--fourth-color);
  border-radius: 2vw;
  font-family: "REM", sans-serif;
  margin: auto;
}

.espera .relogio .numero {
  color: var(--fourth-color);
  border-color: black;
  background: black;
  font-weight: 600;
}

.espera .relogio .doispontos {
  color: black;
}

.proximos {
  width: 100%;
  padding: 2vw 2vw 0;
}

.proximos .linha:first-child {
  background: rgba(255, 255, 255, 1);
  margin-bottom: 0.5vw;
}

.proximos .info .label {
  color: var(--fourth-color);
}

.proximos .info:nth-child(1) .value,
.proximos .info .value {
  color: black;
}

.proximos .premio {
  background: var(--fourth-color);
  border: 0.2vw solid var(--first-color);
}

.premiado-cartelas .cartela .numero:nth-child(2),
.premiado-cartelas .cartela .numero:nth-child(3),
.premiado-cartelas .cartela .numero:nth-child(4),
.premiado-cartelas .cartela .numero:nth-child(5),
.premiado-cartelas .cartela .numero:nth-child(6) {
  margin-top: 3.6vw !important;
}

.premiado-cartelas .cartela .numero:nth-child(2)::before,
.premiado-cartelas .cartela .numero:nth-child(3)::before,
.premiado-cartelas .cartela .numero:nth-child(4)::before,
.premiado-cartelas .cartela .numero:nth-child(5)::before,
.premiado-cartelas .cartela .numero:nth-child(6)::before {
  margin-top: -0.8vw;
}

.premiado .cartela .numero {
  width: 19.3% !important;
}

.principal {
  padding-top: 60px;
  overflow: hidden;
  flex-wrap: wrap;
  height: auto;
}
#modal-cartelas-compradas,
#modal-result-partida {
  z-index: 99999;
}
#modal-cartelas-compradas .cartela .numero:nth-child(2)::before,
#modal-cartelas-compradas .cartela .numero:nth-child(3)::before,
#modal-cartelas-compradas .cartela .numero:nth-child(4)::before,
#modal-cartelas-compradas .cartela .numero:nth-child(5)::before,
#modal-cartelas-compradas .cartela .numero:nth-child(6)::before {
  top: -1.8vw;
}
#modal-result-partida .text-center {
  font-weight: 500 !important;
}
#modal-result-partida h6 {
  font-weight: 500 !important;
  font-size: 1.5rem !important;
}
#modal-cartelas-compradas .cartela .numero {
  width: 17% !important;
}

.esquerda .premios .premio {
  border: 0.2vw solid var(--fifth-color);
  border-radius: 1vw;
  background: var(--sixth-color);
}

.esquerda .premios .premio-ativo {
  border: 0.2 solid var(--sixteenth-color);
  box-shadow:
    0 0 5px cyan,
    /* Brilho mais suave */ 0 0 10px cyan,
    /* Brilho médio */ 0 0 20px cyan,
    /* Brilho forte */ 0 0 20px cyan,
    /* Brilho mais intenso */ 0 0 20px cyan;
  /* Efeito neon */
}

.esquerda .premios .premio .label {
  width: 80%;
  margin: auto;
  margin-top: -0.6vw;
  height: 3.2vw;
  background: var(--gray-dark);
  border-radius: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.esquerda .premios .acumulado {
  border-color: var(--twenty-first-color);
  box-shadow:
    0 0 5px cyan,
    /* Brilho mais suave */ 0 0 10px cyan,
    /* Brilho médio */ 0 0 20px cyan,
    /* Brilho forte */ 0 0 20px cyan,
    /* Brilho mais intenso */ 0 0 20px cyan;
  /* Efeito neon */
}

.esquerda .premios .acumulado .label {
  color: var(--first-color);
}

.esquerda .premios .acumulado .value {
  margin-top: 0.5vw !important;
  color: yellow;
}

.esquerda .premios .acumulado .value::before {
  display: none;
}
.esquerda .premios .acumulado-desativo {
  box-shadow: none;
  background: var(--eighteenth-color);
}

.premios .acumulado-desativo .acumulado-numero {
  color: var(--twentieth-color);
}

.premios .acumulado .acumulado-numero {
  right: -1vw;
  top: 3.3vw;
}

.star {
  right: -1vw;
  top: 3.3vw;
  right: -1vw;
  top: -1vw;
}
.premios .acumulado .acumulado-numero {
  right: -1vw;
  top: -1vw;
}

.esquerda .premios .acumulado {
}

.proximos .info .value {
  font-size: 2.5vw;
  line-height: 4vw;
}

@media (orientation: portrait), (max-width: 1024px) {
  .ganhadores-final img.ganhadores,
  .ganhadores-final img.logo-doou {
    display: none !important;
  }
  .ganhadores-final .box-amarelo {
    padding-top: 3vw;
    width: 90%;
    margin: 4vw auto;
    padding-bottom: 2vw;
  }
  .proximos .info .value {
    font-size: 4vw;
  }

  .principal {
    padding-top: 10px;
  }

  .premiado-cartelas .cartela .numero:nth-child(2),
  .premiado-cartelas .cartela .numero:nth-child(3),
  .premiado-cartelas .cartela .numero:nth-child(4),
  .premiado-cartelas .cartela .numero:nth-child(5),
  .premiado-cartelas .cartela .numero:nth-child(6) {
    margin-top: 6vw !important;
  }

  .premiado-cartelas .cartela .numero:nth-child(2)::before,
  .premiado-cartelas .cartela .numero:nth-child(3)::before,
  .premiado-cartelas .cartela .numero:nth-child(4)::before,
  .premiado-cartelas .cartela .numero:nth-child(5)::before,
  .premiado-cartelas .cartela .numero:nth-child(6)::before {
    margin-top: 0.2vw;
  }

  .esquerda .premios {
    height: 13vw;
  }

  .esquerda .premios .premio {
    border: 0.5vw solid var(--fifth-color);
    border-radius: 2vw;
    background: var(--sixth-color);
  }

  .esquerda .premios .acumulado .label {
    font-size: 2.2vw;
  }

  .esquerda .premios .premio .value {
    font-size: 3.5vw;
  }

  .esquerda .premios .premio-ativo {
    border: 1vw solid var(--sixteenth-color);
    box-shadow:
      0 0 5px cyan,
      /* Brilho mais suave */ 0 0 10px cyan,
      /* Brilho médio */ 0 0 20px cyan,
      /* Brilho forte */ 0 0 20px cyan,
      /* Brilho mais intenso */ 0 0 20px cyan;
    /* Efeito neon */
  }

  .esquerda .premios .premio .label {
    width: 80%;
    margin: auto;
    margin-top: -0.6vw;
    height: 5vw;
    background: var(--gray-dark);
    border-radius: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .esquerda .premios .acumulado {
    border: 1vw solid var(--sixteenth-color);
  }
  .esquerda .premios .acumulado .label {
    color: var(--first-color);
  }

  .esquerda .premios .acumulado-desativo {
    box-shadow: none;
    box-shadow: none;
  }

  .premios .acumulado-desativo .acumulado-numero {
    color: var(--twentieth-color);
  }

  .premios .acumulado .acumulado-numero {
    right: -3vw;
    top: -1vw;
  }

  .star {
    right: -3vw;
    top: -1vw;
  }

  .premiado .cartela .numero {
    width: 19.7% !important;
  }

  .espera {
    padding: 2vw 0;
    height: auto;
    background: none;
  }

  .espera .relogio {
    height: auto;
    padding: 2vw;
    width: calc(100% - 4vw);
    background: var(--fourth-color);
    border-radius: 2vw;
    font-family: "REM", sans-serif;
  }

  .espera .relogio .numero {
    color: var(--fourth-color);
    border-color: black;
    background: black;
    font-weight: 600;
  }

  .espera .relogio .doispontos {
    color: black;
  }

  .proximos {
    width: 100%;
    padding: 2vw 2vw 0;
  }

  .proximos .linha:first-child {
    background: rgba(255, 255, 255, 1);
    margin-bottom: 0.5vw;
  }

  .proximos .info .label {
    color: var(--fourth-color);
  }

  .proximos .info:nth-child(1) .value,
  .proximos .info .value {
    color: black;
  }

  .proximos .premio {
    background: var(--fourth-color);
    border: 0.4vw solid var(--first-color);
  }

  .cartela .numero:nth-child(2),
  .cartela .numero:nth-child(3),
  .cartela .numero:nth-child(4),
  .cartela .numero:nth-child(5),
  .cartela .numero:nth-child(6) {
    margin-top: 6vw !important;
    position: relative;
  }

  .coluna-direita {
    padding: 1vw 3vw;
  }

  .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .cartela-25,
  .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-1 .cartela-25 {
    height: auto !important;
  }

  .cartela .numero:nth-child(2)::before,
  .cartela .numero:nth-child(3)::before,
  .cartela .numero:nth-child(4)::before,
  .cartela .numero:nth-child(5)::before,
  .cartela .numero:nth-child(6)::before {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--first-color);
    background: var(--eighth-color);
    border-radius: 1vw;
    top: -5.8vw;
  }

  .coluna-direita
    .bilhete-melhores-cartelas.zoom-cartela-1
    .numero:nth-child(2)::before,
  .coluna-direita
    .bilhete-melhores-cartelas.zoom-cartela-1
    .numero:nth-child(3)::before,
  .coluna-direita
    .bilhete-melhores-cartelas.zoom-cartela-1
    .numero:nth-child(4)::before,
  .coluna-direita
    .bilhete-melhores-cartelas.zoom-cartela-1
    .numero:nth-child(5)::before,
  .coluna-direita
    .bilhete-melhores-cartelas.zoom-cartela-1
    .numero:nth-child(6)::before {
    top: -8.8vw !important;
  }

  .zoom-cartela-1 .cartela .numero:nth-child(2),
  .zoom-cartela-1 .cartela .numero:nth-child(3),
  .zoom-cartela-1 .cartela .numero:nth-child(4),
  .zoom-cartela-1 .cartela .numero:nth-child(5),
  .zoom-cartela-1 .cartela .numero:nth-child(6) {
    margin-top: 9vw !important;
  }

  .coluna-direita
    .bilhete-melhores-cartelas.zoom-cartela-2
    .numero:nth-child(2)::before,
  .coluna-direita
    .bilhete-melhores-cartelas.zoom-cartela-2
    .numero:nth-child(3)::before,
  .coluna-direita
    .bilhete-melhores-cartelas.zoom-cartela-2
    .numero:nth-child(4)::before,
  .coluna-direita
    .bilhete-melhores-cartelas.zoom-cartela-2
    .numero:nth-child(5)::before,
  .coluna-direita
    .bilhete-melhores-cartelas.zoom-cartela-2
    .numero:nth-child(6)::before {
    top: -4.4vw !important;
  }

  .zoom-cartela-2 .cartela .numero:nth-child(2),
  .zoom-cartela-2 .cartela .numero:nth-child(3),
  .zoom-cartela-2 .cartela .numero:nth-child(4),
  .zoom-cartela-2 .cartela .numero:nth-child(5),
  .zoom-cartela-2 .cartela .numero:nth-child(6) {
    margin-top: 4.4vw !important;
  }

  .cartela .numero:nth-child(2)::before {
    content: "S";
  }

  .cartela .numero:nth-child(3)::before {
    content: "O";
  }

  .cartela .numero:nth-child(4)::before {
    content: "R";
  }

  .cartela .numero:nth-child(5)::before {
    content: "T";
  }

  .cartela .numero:nth-child(6)::before {
    content: "E";
  }

  .coluna-direita .bilhete-melhores-cartelas .cartela {
    height: auto !important;
  }

  .cartelas-compradas {
    background-image: none;
    background: var(--fourth-color);
    color: white;
  }

  #modal-cartelas-compradas .cartela .numero:nth-child(2)::before,
  #modal-cartelas-compradas .cartela .numero:nth-child(3)::before,
  #modal-cartelas-compradas .cartela .numero:nth-child(4)::before,
  #modal-cartelas-compradas .cartela .numero:nth-child(5)::before,
  #modal-cartelas-compradas .cartela .numero:nth-child(6)::before {
    top: -4.5vw;
  }

  #modal-cartelas-compradas .cartela .numero {
    width: 18% !important;
  }
}

.esquerda .centro .sorteio-bolas .bolas .bola-1 {
  z-index: 90;
}

.animaBolaPrincipal {
  animation: bolaAnimate 1s ease;
  z-index: 91;
}

@keyframes bolaAnimate {
  0% {
    transform: scale(5) rotate(0deg);
  }

  100% {
    transform: scale(1) rotate(360deg);
  }
}

h1.premio-title {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: Poppins;
  text-transform: uppercase;
  background: linear-gradient(0deg, #ff0000, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: rotate(-5deg);
  -webkit-text-stroke: 0 #000;
}
h3.premio-type {
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #666;
}
.ganhadores-final .box-amarelo .box-ganhador .nome {
  color: yellow;
  font-weight: 900;
  width: 100%;
  font-size: 22px;
  height: auto;
  padding: 10px;
}
.ganhadores-final.show {
  height: 100vh;
  overflow: auto;
}

.h-100 {
  overflow-x: hidden;
}

.header {
  background-image: none !important;
  background-color: black !important;
  border-bottom: 1px solid #333;
}

.ganhadores-final .box-amarelo {
  border: 0.4vw var(--eleventh-color) solid;
  background-color: rgba(0, 0, 0, 0.9);
}

.ganhadores-final .box {
  position: relative;
}
.ganhadores-final .box:first-child::before {
  content: "";
  position: absolute;
  background-image: url("./logo-sortida.png");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
  bottom: 0;
  left: 0;
  height: 10vw;
  width: 100%;
}

@media (orientation: portrait), (max-width: 1024px) {
  .ganhadores-final::before {
    top: 4vw;
    color: transparent;
    /* deixa o centro vazio */
    -webkit-text-stroke: 1px yellow;
    /* cor e espessura do contorno */
    font-weight: 900;
  }
}

.coluna-direita .bilhete-melhores-cartelas .cartela .cupom,
.coluna-direita .bilhete-melhores-cartelas .cartela .doador,
.coluna-direita .lista-melhores-cartelas .topo,
.premiado .cartela .doador,
.premiado .cartela .rodape {
  background: var(--fifth-color);
  color: white;
}

.esquerda .centro .sorteio-bolas .info .box .value {
  background: var(--fifth-color);
}

.esquerda .centro .sorteio-bolas .info .box .label {
  background: black;
  color: var(--fifteenth-color);
}

.esquerda .painel-numeros .numero {
  background: var(--fifteenth-color);
}

.esquerda .painel-numeros .sorteado,
.coluna-direita .lista-melhores-cartelas .corpo .faltam span {
  background: var(--seventeenth-color);
  color: white;
}

.esquerda .painel-numeros .ultimo {
  background: yellow;
  color: red;
}

.esquerda .premios .premio-desativo .label,
.esquerda .premios .premio-desativo .value {
  color: #a1a1a1;
}

.esquerda .premios .premio-desativo {
  background: var(--eighteenth-color);
}

.esquerda .premios .premio-desativo .label {
  background: var(--twentieth-color);
}

.coluna-direita .lista-melhores-cartelas .corpo .doador {
  color: var(--fifth-color);
  overflow: hidden;
}
.coluna-direita .lista-melhores-cartelas .corpo .doador .bg-branco {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 2px;
}
.premiado .cartela .sorteado {
  background: var(--seventeenth-color);
}

.cartela .sorteado {
  background: var(--seventeenth-color) !important;
}

.esquerda .painel-numeros {
  background-color: rgba(0, 0, 0, 0.5);
}

.esquerda .premios .acumulado-desativo {
  border: 0.2vw solid var(--fifth-color);
  background-image: none;
  background: var(--eighteenth-color);
  color: #a1a1a1;
}
.esquerda .premios .acumulado-desativo .label {
  background: var(--twentieth-color);
  color: #a1a1a1;
}
.esquerda .premios .acumulado-desativo .value {
  color: #a1a1a1 !important;
}
.esquerda .premios .acumulado-ativo {
  background-image: none;
  background: red;
}
@media (orientation: portrait), (max-width: 1024px) {
  .esquerda .premios .acumulado-desativo {
    border: 0.5vw solid var(--fifth-color);
  }
  .ganhadores-final .box:first-child::before {
    display: none;
  }
}
.ganhadores-final .box-amarelo .box-ganhador {
  height: auto;
  border: 2px solid var(--fourth-color);
  border-radius: 1vw;
  margin: 2vw;
  padding: 2vw;
  box-shadow:
    0 0 5px yellow,
    0 0 10px yellow,
    0 0 20px yellow,
    0 0 20px yellow,
    0 0 20px yellow;
  background: var(--sixth-color);
  position: relative;
  padding-top: 40px;
  width: 80%;
  max-width: 300px;
}

.ganhadores-final.show {
  padding-top: 5vw;
}

.ganhadores-final .box-amarelo .box-ganhador .codigo {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  text-align: center;
  margin: 0 10%;
  background: red;
  border-radius: 0 0 10px 10px;
  background-color: #2b2b2b;
  color: white;
  font-size: 24px;
  padding: 0;
  height: 40px;
}
.ganhadores-final .box-amarelo .box-ganhador .valor {
  color: white;
}

.premiado .janela .box {
  color: white;
  background: var(--fourth-color) !important;
}
.cartelas-compradas span {
  color: white;
}
.header .navbar-brand {
  background: url(logo-sortida.png) left top no-repeat !important;
  background-size: auto 100% !important;
  color: transparent !important;
  width: 207px !important;
  height: 40px !important;
  display: block;
}
.main {
  background-image: none !important;
  background: #1d1d1d !important;
}
.bilhete-melhores-cartelas {
  background-image: none !important;
  background: #1d1d1d;
}
.menu-overlay,
.menu-overlay .main-menu,
.menu-overlay.menu-open .main-menu {
  background: #1d1d1d;
  background-size: 100% !important;
}

.main-menu .text-default-secondary {
  color: var(--fourth-color) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}
.menu-overlay .main-menu .menu-container .nav-pills {
  padding-top: 25px;
  border-top: 1px solid #414141;
}
.menu-overlay .main-menu .menu-container .nav-pills .nav-item .nav-link {
  font-weight: 500;
}
.main-menu .menu-container .nav-pills .nav-item .nav-link.active {
  background: var(--fourth-color) !important;
  color: white !important;
}
.main-menu hr {
  display: none !important;
}
.main-menu button#btn-sair {
  background: var(--fourth-color) !important;
  color: white !important;
  font-weight: 700 !important;
  transition: 0.5s !important;
  border-radius: 25px !important;
  padding: 10px 25px !important;
  border: none !important;
}
.menu-overlay .main-menu .menu-container .nav-pills .nav-item .nav-link .arrow {
  color: var(--fourth-color) !important;
}
.coluna-direita .bilhete-melhores-cartelas .cartela .cupom,
.coluna-direita .bilhete-melhores-cartelas .cartela .doador {
  background: black !important;
}
.coluna-direita .bilhete-melhores-cartelas .cartela .cupom,
.coluna-direita .bilhete-melhores-cartelas .cartela .doador,
.coluna-direita .lista-melhores-cartelas .topo,
.premiado .cartela .doador,
.premiado .cartela .rodape {
  background: black !important;
  color: white !important;
}
.btn-success {
  background: green;
  color: white;
  border: none;
}
.alert-info {
  background-color: var(--fifteenth-color);
  border: none;
  color: var(--fourth-color);
  margin-top: 10px;
}
.main .main-container {
  margin: 10px;
  padding: 20px 10px;
}
.logo-doou {
  display: none;
}
h4#saldo {
  display: flex;
  gap: 4px;
}
.bt-help {
  font-size: 14px;
}
.loader-display {
  color: var(--fourth-color);
  background: #1d1d1d;
}

.loader-display h4 {
  color: var(--fourth-color);
}
.btn-primary {
  background: var(--fourth-color);
  color: white;
  border: none;
}
.btn-primary:hover {
  opacity: 0.8;
}
.avatar.rounded-circle,
.logo-loading .rounded-circle {
  border-radius: 0 !important;
}
.especial {
  border: 2px solid var(--fourth-color);
  background: linear-gradient(to bottom, white, var(--fifteenth-color));
  position: relative;
}
.super.especial {
  border: 2px solid red;
  background: linear-gradient(to bottom, white, #ffa7a2);
  position: relative;
}
.nome-sala {
  width: 150px;
}
.login-box .btn-success,
.btn-success:active,
.btn-success:focus {
  background: var(--fourth-color) !important;
  color: white !important;
  font-weight: 700 !important;
  transition: 0.5s !important;
  border-radius: 25px !important;
  padding: 10px 25px !important;
  margin-bottom: 10px !important;
}
.login-page .login-box a {
  color: var(--fourth-color) !important;
}
.login-page {
  background: black !important;
}
form#sign_in {
  margin-bottom: 120px;
}
form#sign_in h2.font-weight-normal.mb-5 {
  color: white !important;
  padding: 10px 20px !important;
  text-align: center !important;
  border-radius: 25px !important;
  font-size: 20px !important;
  margin-bottom: 10px !important;
}
.float-label .form-control.text-white {
  border-radius: 60px 20px 20px 60px;
  background: white;
  width: 100%;
  position: relative;
}
.float-label .form-control.text-white::before {
}
form#sign_in .form-group {
  position: relative;
  padding: 0;
}
form#sign_in .form-group input {
  color: white;
  background: none;
  border-radius: 0;
  padding-left: 50px;
  padding-right: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
form#sign_in .form-group::before {
  font-family: "Material Icons";
  content: "";
  display: flex;
  font-size: 24px;
  color: var(--fourth-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  padding-top: 6px;
  justify-content: center;
  z-index: 9;
}

form#sign_in .form-group:has(input[name="email"])::before {
  content: "perm_identity" !important;
}
form#sign_in .form-group:has(input[name="password"])::before {
  content: "lock" !important;
}
form#sign_in .form-group:has(input[name="password_confirmation"])::before {
  content: "lock" !important;
}
form#sign_in .form-group:has(input[name="cpf"])::before {
  content: "assignment_ind" !important;
}
form#sign_in .float-label .form-control-label {
  display: none;
}
form#sign_in input#input-password,
form#sign_in input#input-codigo-acesso {
  text-align: center !important;
}
form#sign_in a {
  text-align: center;
  color: var(--fourth-color);
  width: 100%;
  display: flex;
  justify-content: center;
}
.btn-login {
  width: 200px !important;
  background: var(--fourth-color) !important;
  color: var(--white) !important;
  font-weight: 700;
  transition: 0.5s;
}
body:has(form#sign_in) {
  background-color: black;
  height: 100vh;
}
html:has(form#sign_in) {
  overflow: auto;
}

.footer.no-bg-shadow {
  margin-bottom: 120px !important;
}
form#sign_in a {
  width: 100% !important;
  text-align: center;
}
form#sign_in {
  background: url(imgs-sistema/logo-sortida.png) center top no-repeat !important;
  padding-top: 120px;
  background-size: 60% !important;
}
form#sign_in label {
  display: none;
}
.login-page {
  margin: 0 auto;
}
.login-page .login-box .logo {
  background: url(imgs-sistema/logo-sortida.png) center top no-repeat !important;
  text-align: center !important;
  padding-top: 97px;
  background-size: 60% !important;
  height: 50px;
}
.login-page .login-box .logo b {
  display: none !important;
}
.login-page #sign_in {
  background-image: none !important;
  padding-top: 0 !important;
}
.footer-lottopar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(178, 210, 53);
  padding: 10px 80px;
  display: flex;
  gap: 50px;
}
body:has(.footer) .footer-lottopar {
  position: fixed;
  bottom: 0;
  padding: 10px;
  padding-right: 100px;
  flex-wrap: nowrap;
  z-index: 1;
}
.footer-lottopar-inner {
  width: 33.3%;
  height: 60px;
  background-size: 80%;
}
.footer-lottopar-inner a {
  color: white;
}
.footer-lottopar .lottopar-1 {
  height: 60px;
  background: url(imgs-sistema/lottopar_footer_logo.avif) center no-repeat !important;
  background-size: contain !important;
  max-width: 300px;
}
.footer-lottopar .lottopar-2 {
  height: 60px;
  max-width: 200px;
  background: url(imgs-sistema/site-autorizado-lottopar.avif) center no-repeat !important;
  background-size: contain !important;
}
.footer-lottopar .lottopar-3 {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.login-page {
  max-width: 100%;
  height: 100vh;
}
.login-box {
  max-width: 360px;
  margin: auto;
  padding: 20px 0;
}
@media (max-width: 600px) {
  .footer-lottopar {
    padding-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-lottopar-inner {
    width: 40%;
  }
  .footer-lottopar .lottopar-3 {
    width: 100%;
    height: auto;
  }
}

.three-prizes .premio {
  overflow: hidden;
}
.three-prizes .premio::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateY(-50%);
  animation: shine 9s infinite;
}

.one-prizes .proximos .premio .balls {
  margin-left: 10vw;
  font-weight: 600;
  font-size: 1.5vw;
  display: block;
}
.one-prizes .proximos .premio {
  width: 70%;
  height: auto;
  margin: auto;
  text-transform: uppercase !important;
  border-color: white;
  display: flex;
  justify-content: normal;
  color: yellow;
  animation: balancar 9s infinite ease-in-out;
}
.one-prizes .proximos .acumulado {
  background: linear-gradient(
    to bottom,
    var(--twelfth-color),
    var(--tenth-color)
  ) !important;
  color: white;
}
.one-prizes .proximos .premio .value {
  position: absolute;
  right: 3vw;
}
.one-prizes .proximos .premio .label {
  font-size: 1.2vw;
}

.one-prizes .proximos .acumulado .label {
  font-size: 2vw;
}
/* Primeiro elemento */
.one-prizes .proximos .major {
  width: 100%;
  margin: 2px auto;
}
.premios .major .acumulado-numero span,
.premios .minor .acumulado-numero span,
.premios .mini .acumulado-numero span {
  font-size: 2vw;
}
.one-prizes .numAcumulado {
  color: white;
  font-weight: 600;
  font-size: 2vw;
}
.one-prizes .proximos .premio .star-acumulado {
  top: unset !important;
}
.one-prizes .proximos .acumulado .label {
  display: flex;
  align-items: center;
}
.one-prizes .proximos .major .star-acumulado {
  background-image: url("./images/ball-gold.png");
}
/* Segundo elemento */
.one-prizes .proximos .minor {
  width: 90%;
  margin: 2px auto;
}
.one-prizes .proximos .minor .star-acumulado {
  background-image: url("./images/ball-silver.png");
}
/* Terceiro elemento */
.one-prizes .proximos .mini {
  width: 80%;
  margin: 2px auto;
}

.one-prizes .proximos .mini .star-acumulado {
  background-image: url("./images/ball-bronze.png");
}
.one-prizes .proximos .premio .label::before {
  display: none !important;
}
.one-prizes .acumulado .star-acumulado {
  width: 3.5vw;
  height: 3.5vw;
  max-width: 95px;
  max-height: 95px;
  padding: 0;
  top: -2.5vw;
  border-radius: 100%;
  animation: pulse-ball 1.5s infinite ease-in-out;
}

@media (orientation: portrait), (max-width: 1024px) {
  .proximos .premio {
    padding: 3vw;
  }
  .espera .relogio .numero {
    font-size: 16vw !important;
    line-height: 18vw !important;
  }
  .espera .relogio .doispontos {
    font-size: 16vw !important;
    line-height: 18vw !important;
  }
  iframe {
    height: calc(100vh - 120px) !important;
  }

  .one-prizes .acumulado .star-acumulado {
    width: 9vw;
    height: 9vw;
  }
  .one-prizes .proximos .premio .label {
    padding-right: 0;
    font-size: 3vw;
  }
  .one-prizes .proximos .premio .balls {
    font-size: 3vw;
    margin-left: 14vw;
  }

  .proximos .info .label {
    font-size: 4vw !important;
    line-height: 4.5vw !important;
  }

  .proximos .info .value {
    font-size: 4vw !important;
    line-height: 4.5vw !important;
  }
  .proximos .show_points_and_players .info .value,
  .proximos .show_points_and_players .info .label {
    font-size: 3vw !important;
    line-height: 3.5vw !important;
  }

  .premios .major .acumulado-numero span,
  .premios .minor .acumulado-numero span,
  .premios .mini .acumulado-numero span {
    font-size: 4vw;
  }
  .one-prizes .numAcumulado {
    font-size: 4vw;
  }
}
#app-kit-games {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  align-content: start;
  justify-content: center;
}
.game-card {
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
}
.game-card .btn {
  position: absolute;
  bottom: 5px;
  right: 10px;
}
#app-kit-rodadas-finalizadas .card-body p {
  font-size: 0.8rem;
}
#modal-rodadas,
#app-kit-rodadas,
#app-kit-minhas-rodadas {
  z-index: 9999;
}
.modal-comprar {
  z-index: 9999;
  align-content: center;
}
@media (orientation: portrait), (max-width: 1024px) {
  .cartelas-compradas {
    font-size: 3.5vw;
  }
  #app-kit-rodadas .card-body .col-3,
  #app-kit-rodadas-finalizadas .card-body .col-3 {
    flex: 50%;
    max-width: 50%;
    margin-top: 10px;
  }
}

#app-kit-games {
  min-height: 100vh;
}

#buttons-footer a {
  cursor: pointer;
}
.footer a:not(.btn):hover i,
.footer a:not(.btn):hover p {
  color: white;
}

.header .btn-link {
  text-decoration: none;
}
.header .btn-link i {
  margin-right: 5px;
}
.header .btn-link:hover {
  color: orange;
}

.only-desktop {
  display: inline;
}

.only-mobile {
  display: none;
}

@media (orientation: portrait), (max-width: 1024px) {
  .esquerda,
  .coluna-direita {
    width: 100%;
  }
  #owl-propaganda {
    max-width: 100%;
  }
  .only-desktop {
    display: none;
  }

  .only-mobile {
    display: inline;
  }
}

.modal {
  padding-top: 50px;
}
.iframe .modal {
  padding-top: 0;
}
.principal {
  padding-top: 0;
}
.iframe .principal {
  padding-top: 30px;
}

#modal-comprar,
#modal-auto-comprar {
  margin-top: 50px;
  padding-top: 10px;
  padding-bottom: 60px;
  z-index: 99991;
  margin: 60px 10px 0;
  width: calc(100% - 20px);
}
#modal-auto-comprar .modal-body .media h6 {
  font-size: 15px;
}
#modal-auto-comprar .modal-body .media input {
  background: white;
  color: var(--fifth-color);
}
#modal-auto-comprar .input-qtd {
  width: 100%;
  margin: auto;
  height: 40px;
  border: none;
  border-top: 1px solid var(--fifth-color);
  border-bottom: 1px solid var(--fifth-color);
}
#modal-auto-comprar .input-qtd input {
  width: 100%;
  height: 100%;
  text-align: center;
  border: none;
}
#modal-auto-comprar .quadro-qtd {
  margin: 10px auto;
}

#modal-auto-comprar .bt-menos-mais {
  background-color: var(--fifth-color);
  color: white;
  height: 40px;
}
#modal-auto-comprar .qtd-bt {
  background-color: var(--eighth-color);
  color: white;
  padding: 10px 3%;
  border-radius: 10px;
}

#modal-auto-comprar .card {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #999;
}

@media (max-width: 500px) {
  #modal-auto-comprar .qtd-bt {
    padding: 5px 1.6%;
    border-radius: 5px;
    font-size: 13px;
  }
}
#modal-auto-comprar .div-dir button {
  background: green;
  color: white;
}
#modal-comprar .qtd-bt {
  width: 11.5%;
  height: 50px;
  line-height: 50px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  background: var(--seventeenth-color);
  color: var(--first-color);
  border: none;
  width: 100%;
  text-align: center;
}

#modal-comprar .bt-comprar,
#modal-comprar .bt-menos-mais {
  background: var(--third-color);
  color: white;
}

#owl-propaganda {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  max-width: 90%;
}

#owl-propaganda .owl-stage-outer,
#owl-propaganda .owl-stage,
#owl-propaganda .owl-item,
#owl-propaganda .item {
  height: auto !important;
  max-height: none !important;
}

#owl-propaganda .owl-stage-outer {
  overflow: hidden;
}

#owl-propaganda .item img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media (orientation: portrait), (max-width: 1024px) {
  #owl-propaganda .owl-stage-outer,
  #owl-propaganda .owl-stage,
  #owl-propaganda .owl-item,
  #owl-propaganda .item {
    height: auto !important;
    max-height: none !important;
  }

  .footer {
    height: 50px;
    width: 100%;
    display: flex;
    bottom: 80px;
  }

  .footer {
    border-radius: 0;
    background-color: var(--fourteenth-color);
    justify-content: center;
    align-items: center;
    right: 0;
    left: unset;
    z-index: 1;
  }
  .footer .row {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .footer .col-auto {
    height: fit-content;
  }
  .footer .col-auto a {
    padding: 5px 10px;
    filter: brightness(1000%);
  }
  .footer a:not(.btn) {
    padding: 0 15px;
    border-top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .footer a:not(.btn) p {
    line-height: 11px;
  }
  .footer a:not(.btn) i,
  .footer a:not(.btn) span {
    width: 16px;
    height: 16px;
  }
  .material-icons {
    font-size: 16px;
  }
  .footer a {
    color: white !important;
  }

  .footer a:hover {
    color: var(--sixteenth-color) !important;
  }

  .menu-btn .material-icons {
    font-size: 25px;
  }
  .back-btn .material-icons {
    font-size: 25px;
  }
  #buttons-footer {
    width: 20%;
    height: 50px;
    display: flex;
    flex-wrap: nowrap;
    max-width: 600px;
    margin: auto;
  }
}
#buttons-footer {
  display: flex !important;
  width: fit-content;
  justify-content: space-around; /* ou space-between */
  align-items: center;
}

/* garante que order funcione */
#buttons-footer > a {
  flex: 1 1 0;
  text-align: center;
}

/* =========================================================
   3 BOTÕES (exatamente 3 <a>)
   Queremos: [2º] [HOME] [3º]
   (HOME é o 1º no HTML)
   ========================================================= */
#buttons-footer:has(> a:nth-child(3)):not(:has(> a:nth-child(4)))
  > a:nth-child(1) {
  order: 2;
} /* home */
#buttons-footer:has(> a:nth-child(3)):not(:has(> a:nth-child(4)))
  > a:nth-child(2) {
  order: 1;
}
#buttons-footer:has(> a:nth-child(3)):not(:has(> a:nth-child(4)))
  > a:nth-child(3) {
  order: 3;
}

/* =========================================================
   4 BOTÕES (exatamente 4 <a>)
   Centro "mais natural" (par): [2º] [HOME] [3º] [4º]
   ========================================================= */
#buttons-footer:has(> a:nth-child(4)):not(:has(> a:nth-child(5)))
  > a:nth-child(1) {
  order: 2;
} /* home */
#buttons-footer:has(> a:nth-child(4)):not(:has(> a:nth-child(5)))
  > a:nth-child(2) {
  order: 1;
}
#buttons-footer:has(> a:nth-child(4)):not(:has(> a:nth-child(5)))
  > a:nth-child(3) {
  order: 3;
}
#buttons-footer:has(> a:nth-child(4)):not(:has(> a:nth-child(5)))
  > a:nth-child(4) {
  order: 4;
}

/* =========================================================
   5 BOTÕES (exatamente 5 <a>)
   Queremos: [2º] [3º] [HOME] [4º] [5º]
   ========================================================= */
#buttons-footer:has(> a:nth-child(5)):not(:has(> a:nth-child(6)))
  > a:nth-child(1) {
  order: 3;
} /* home */
#buttons-footer:has(> a:nth-child(5)):not(:has(> a:nth-child(6)))
  > a:nth-child(2) {
  order: 1;
}
#buttons-footer:has(> a:nth-child(5)):not(:has(> a:nth-child(6)))
  > a:nth-child(3) {
  order: 2;
}
#buttons-footer:has(> a:nth-child(5)):not(:has(> a:nth-child(6)))
  > a:nth-child(4) {
  order: 4;
}
#buttons-footer:has(> a:nth-child(5)):not(:has(> a:nth-child(6)))
  > a:nth-child(5) {
  order: 5;
}

/* =========================================================
   6 BOTÕES (exatamente 6 <a>)
   Centro "mais natural" (par): [2º] [3º] [HOME] [4º] [5º] [6º]
   ========================================================= */
#buttons-footer:has(> a:nth-child(6)):not(:has(> a:nth-child(7)))
  > a:nth-child(1) {
  order: 3;
} /* home */
#buttons-footer:has(> a:nth-child(6)):not(:has(> a:nth-child(7)))
  > a:nth-child(2) {
  order: 1;
}
#buttons-footer:has(> a:nth-child(6)):not(:has(> a:nth-child(7)))
  > a:nth-child(3) {
  order: 2;
}
#buttons-footer:has(> a:nth-child(6)):not(:has(> a:nth-child(7)))
  > a:nth-child(4) {
  order: 4;
}
#buttons-footer:has(> a:nth-child(6)):not(:has(> a:nth-child(7)))
  > a:nth-child(5) {
  order: 5;
}
#buttons-footer:has(> a:nth-child(6)):not(:has(> a:nth-child(7)))
  > a:nth-child(6) {
  order: 6;
}

/**
 * STYLE COMPRAR
 */

.modal-comprar #comprar {
  height: 200px;
  padding-top: 50px !important;
}

.modal-comprar .div-esq {
  width: 100%;
}

.modal-comprar .div-dir {
  float: none;
  display: flex;
  width: 100%;
}

.modal-comprar .div-100 {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: space-between;
  gap: 5px;
}

.modal-comprar .div-100r {
  width: 100%;
  height: auto;
  display: flex;
  gap: 10px;
  margin: 5px 0;
}

.modal-comprar .quadro-qtd {
  height: auto;
  display: flex;
  width: 50%;
}

#comprar .bt-menos-mais {
  height: auto;
}

.modal-comprar .div-100r .input-valor input {
  width: 100%;
  height: 30px;
  border: none;
  background: #efefef;
  font-weight: 500;
  border-radius: 10px;
  padding: 0 10px;
}

.modal-comprar .div-dir button {
  top: 0;
  width: 100%;
  color: white;
  border: none;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-comprar #comprar .qtd-bt {
  background: white;
  color: var(--fourth-color);
  border: 1px solid var(--fourth-color);
  width: 12%;
  border-radius: 10px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.modal-comprar .quadro-qtd input {
  width: 100%;
  height: 30px;
  text-align: center;
}

.modal-comprar .bt-menos-mais {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 30px;
}

.modal-comprar .input-qtd {
  width: 60%;
}

.modal-comprar .menos-mais-esquerda {
  border-radius: 10px 0 0 10px;
}

.modal-comprar .menos-mais-direita {
  border-radius: 0 10px 10px 0;
}

.propaganda {
  position: relative;
  z-index: 9;
}

#modal-auto-comprar .modal-content {
  border-radius: 14px;
  overflow: hidden;
}

/* Header menor */
#modal-auto-comprar .modal-header {
  padding: 10px 12px;
  background: var(--fourth-color);
  color: #fff;
  border: 0;
}
#modal-auto-comprar .modal-title {
  font-size: 14px;
  letter-spacing: 0.5px;
}
#modal-auto-comprar .modal-header .close {
  color: #fff;
  opacity: 1;
  font-size: 26px;
  line-height: 1;
}

/* Body mais compacto e sem “cards grandes” */
#modal-auto-comprar .modal-body {
  padding: 10px 12px 92px; /* espaço pro CTA fixo */
}

/* Mata espaçamentos do bootstrap dentro do modal */
#modal-auto-comprar .card {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-bottom: 10px !important; /* sobrescreve mb-3 */
  background: #fff;
}
#modal-auto-comprar .card-body {
  padding: 10px 0;
}
#modal-auto-comprar .media,
#modal-auto-comprar .media-body {
  margin: 0;
  padding: 0;
}

/* Títulos menores e colados */
#modal-auto-comprar .modal-body .media h6 {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--fourteenth-color);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Preço (input grande) vira “placa” */
#modal-auto-comprar .large-gift-card {
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 22px;
  font-weight: 900;
  color: var(--fourteenth-color);
}

/* Linhas de controle (menos espaço vertical) */
#modal-auto-comprar .div-100r {
  gap: 8px;
  margin: 4px 0 6px;
}

/* Stepper (+ / input / -) mais “flat” e compacto */
#modal-auto-comprar .quadro-qtd {
  width: 100%;
  gap: 0;
}
#modal-auto-comprar .bt-menos-mais {
  height: 38px;
  width: 48px; /* botão fixo */
  background: var(--fifth-color);
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
}
#modal-auto-comprar .input-qtd {
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-left: 0;
  border-right: 0;
}
#modal-auto-comprar .input-qtd input {
  font-size: 16px;
  font-weight: 800;
  color: var(--fourteenth-color);
}

/* Grid dos botões rápidos (em vez de “linha solta”) */
#modal-auto-comprar .div-100 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
#modal-auto-comprar .div-100 .acao-compra:last-child {
  grid-column: span 2;
}
/* Botões rápidos mais compactos */
#modal-auto-comprar .qtd-bt {
  padding: 8px 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  background: var(--eighth-color);
  color: #fff;
  text-align: center;
}

/* MAX diferente (menos “igual a tudo”) */
#modal-auto-comprar .qtd-bt:last-child {
  background: var(--third-color);
}

/* TOTAL: vira uma faixa compacta */
#modal-auto-comprar .card:last-of-type {
  border-bottom: 0;
  margin-bottom: 0 !important;
}
#modal-auto-comprar .card:last-of-type .card-body {
  padding-bottom: 6px;
}

/* CTA fixo no fundo do modal */
#modal-auto-comprar .div-dir {
  bottom: 0;
  background: #fff;
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: auto; /* cola nas bordas do body */
}
#modal-auto-comprar .div-dir .bt-comprar {
  height: 48px;
  border-radius: 12px;
  background: #0a8f2a; /* verde */
  font-weight: 900;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Mobile bem pequeno: 4 colunas nos botões rápidos */
@media (max-width: 360px) {
  #modal-auto-comprar .div-100 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===========================
   MODAL COMPRAR (COMPACTO)
   =========================== */
#modal-comprar.modal-comprar .modal-dialog {
  margin: 0 auto;
  max-width: 520px;
}

#modal-comprar .modal-content {
  border-radius: 14px;
  overflow: hidden;
}

/* Header menor e mais limpo */
#modal-comprar .modal-header {
  padding: 10px 12px;
  background: var(--fourth-color);
  color: #fff;
  border: 0;
}
#modal-comprar .modal-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#modal-comprar .modal-header .close {
  color: #fff;
  opacity: 1;
  font-size: 26px;
  line-height: 1;
}

/* Body compacto + espaço pro CTA fixo */
#modal-comprar .modal-body {
  padding: 10px 12px 92px;
}

/* Remove “gordura” dos cards/mb-3/rows */
#modal-comprar .card {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-bottom: 10px !important;
  background: #fff;
}
#modal-comprar .card-body {
  padding: 10px 0;
}
#modal-comprar .media,
#modal-comprar .media-body {
  margin: 0;
  padding: 0;
}

/* Textos do topo (valor/cartelas) mais compactos */
#modal-comprar .card-body h6.mb-1 {
  margin: 0 0 4px !important;
  font-size: 12px;
  font-weight: 900;
  color: var(--fourteenth-color);
  text-transform: uppercase;
  letter-spacing: 0.25px;
}

/* Bloco do prêmio: força layout mais “inline” e sem espaçamento */
#modal-comprar .card-body .row {
  margin: 6px 0 0;
}
#modal-comprar .card-body .col-4 {
  flex: 0 0 50%;
  max-width: 100%;
  padding: 0;
}
#modal-comprar .card-body .col-4 p.mb-1 {
  margin: 0 !important;
  font-size: 11px;
  opacity: 0.8;
}
#modal-comprar .card-body .col-4 h6.mb-1 {
  margin: 2px 0 0 !important;
  font-size: 12px;
}

/* Faixa de SALDO (fica bem evidente e ocupa pouco) */
#modal-comprar > .modal-dialog > .modal-content > .modal-body > .row {
  margin: 0 0 10px;
}
#modal-comprar > .modal-dialog > .modal-content > .modal-body > .row .col-12 {
  padding: 0;
}
#modal-comprar > .modal-dialog > .modal-content > .modal-body > .row h6 {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 128, 0, 0.1);
  border: 1px solid rgba(0, 128, 0, 0.18);
  font-size: 13px;
  font-weight: 900;
}

/* Área de compra compacta */
#modal-comprar .div-esq {
  width: 100%;
}

/* Grid de quantidades (melhor que linha solta) */
#modal-comprar .div-100 {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* Botões quantidade */
#modal-comprar .div-esq .qtd-bt {
  height: 42px;
  line-height: 42px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  background: var(--eighth-color);
  color: #fff;
  border: 0;
  text-align: center;
}

/* Linha do stepper + valor lado a lado */
#modal-comprar .div-100r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  margin: 0;
}

#modal-comprar .quadro-qtd {
  width: 100%;
  display: flex;
  gap: 0;
}
#modal-comprar .bt-menos-mais {
  width: 48px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fifth-color);
  color: #fff;
  font-size: 18px;
  border-radius: 12px;
}
#modal-comprar .menos-mais-esquerda {
  border-radius: 12px 0 0 12px;
}
#modal-comprar .menos-mais-direita {
  border-radius: 0 12px 12px 0;
}

#modal-comprar .input-qtd {
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-left: 0;
  border-right: 0;
}
#modal-comprar .input-qtd input {
  height: 100%;
  font-size: 16px;
  font-weight: 900;
  color: var(--fourteenth-color);
  background: #fff;
  border: 0;
}

/* Campo valor compra */
#modal-comprar .input-valor input {
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  font-weight: 900;
  text-align: center;
  color: var(--fourteenth-color);
}

/* CTA fixo no fundo */
#modal-comprar .div-dir {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 12px -12px -10px;
  width: calc(100% + 24px);
}
#modal-comprar .div-dir .bt-comprar {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  background: #0a8f2a;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.3px;
  border: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Ajustes para telas bem pequenas */
@media (max-width: 360px) {
  #modal-comprar .div-100 {
    grid-template-columns: repeat(3, 1fr);
  }
  #modal-comprar .div-100r {
    grid-template-columns: 1fr;
  }
}
.menu-overlay .main-menu {
  z-index: 9999999999;
}
header .row {
  flex-wrap: nowrap;
}
.sala-sala-integracao .banner {
  /* BINGO 90*/
  background-image: url("https://asseabradepremios.github.io/tema/sortida-homolog/banner/images/banner-01.jpg") !important;
}
.sala-sala-02 .banner {
  /* BINGO 75*/
  background-image: url("https://asseabradepremios.github.io/tema/sortida-homolog/banner/images/banner-02.jpg") !important;
}
.sala-sala-03 .banner {
  /* Flashbingo*/
  background-image: url("https://asseabradepremios.github.io/tema/sortida-homolog/banner/images/banner-03.jpg") !important;
}

.esquerda .premios .mini .value,
.esquerda .premios .minor .value,
.esquerda .premios .major .value {
  margin-top: 0.5vw !important;
}
.esquerda .premios .mini .value::before,
.esquerda .premios .minor .value::before,
.esquerda .premios .major .value::before {
  display: none;
}
@media (orientation: portrait), (max-width: 1024px) {
  .esquerda .premios .mini .value,
  .esquerda .premios .minor .value,
  .esquerda .premios .major .value {
    margin-top: 0.5vw !important;
  }
  .esquerda .premios .mini .value::before,
  .esquerda .premios .minor .value::before,
  .esquerda .premios .major .value::before {
    display: none;
  }

  #comprar .div-dir button {
    width: 36vw;
  }
}
@media (max-width: 1500px) {
  .header .btn-link {
    font-size: 13px;
    padding: 0 8px;
  }
}
@media (max-width: 1200px) {
  .header .btn-link {
    font-size: 12px;
    padding: 0 8px;
  }
}
@media (max-width: 1100px) {
  .header .btn-link {
    font-size: 11px;
    padding: 0 10px;
  }
}
@media (max-width: 1000px) {
  .header .btn-link {
    font-size: 9px;
    padding: 0 4px;
  }
}
@media (max-width: 420px) {
  .footer a:not(.btn) {
    padding: 0 10px;
  }
  .nome-sala {
    width: 110px;
  }
  .header .navbar-brand {
    height: 30px !important;
    width: 110px !important;
  }
}

.linha:first-child {
  display: flex;
  width: 100%;
}

.linha:first-child .box {
  flex: 1 1 0;
  min-width: 0; /* MUITO IMPORTANTE */
  text-align: center;
  padding: 10px;
  box-sizing: border-box; /* evita estourar */
}

.linha:first-child .box:not(:last-child) {
  border-right: 1px solid #2c2c54;
}
.linha:first-child .info .label {
  display: flex;
  width: 100%;
  justify-content: center;
}
.linha:first-child .info::before {
  display: none;
}
.linha:first-child .info .label {
  line-height: 1vw;
}
.linha:first-child .info .value {
  font-size: 2vw;
  line-height: 3vw;
}

@media (orientation: portrait), (max-width: 1024px) {
  .linha:first-child .info .value {
    font-size: 3.5vw !important;
  }
}
.proximos .premio .value span {
  font-size: 1.5vw;
}

@media (orientation: portrait), (max-width: 1024px) {
  .proximos .premio .value span {
    font-size: 3vw;
  }
}
.snackbar {
  z-index: 999999;
}

body:has(#game) .header .navbar-brand {
  background: none !important;
  color: white !important;
}

body:has(#game) .header .navbar-brand {
  position: relative;
  display: flex;
  align-items: center;
}
body:has(#game) .header .nome-sala {
  display: flex;
  align-items: center;
  gap: 10px;
}
body:has(#game) .header .nome-sala .icon-game {
  width: 40px;
  height: 40px;
}
