/* [project]/app/globals.css [app-client] (css) */
:root {
  --cor-principal: #00c774;
  --cor-hover: #00b066;
  --cor-texto: #000;
}

body {
  background-color: #121212;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.bonus-cadastro {
  box-sizing: border-box;
  background-color: var(--cor-principal);
  width: 100%;
  color: var(--cor-texto);
  text-align: center;
  z-index: 999;
  padding: 5px;
  font-size: 15px;
  font-weight: bold;
  position: relative;
}

.top-bar {
  background-color: #1e1e1e;
  width: 100%;
  padding: 10px 0;
  box-shadow: 0 4px 12px #0009;
}

.container {
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
}

.logo img {
  width: 100px;
  height: auto;
}

.buttons {
  gap: 10px;
  display: flex;
}

.button {
  background-color: var(--cor-principal);
  color: var(--cor-texto);
  cursor: pointer;
  text-align: center;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
}

.button:hover {
  background-color: var(--cor-hover);
}

.sidebar {
  z-index: 9999;
  background-color: #1e1e1e;
  width: 300px;
  height: 100%;
  transition: left .3s ease-in-out;
  position: fixed;
  top: 0;
  left: -300px;
  box-shadow: 0 4px 12px #0009;
}

.sidebar.show {
  left: 0;
}

.sidebar-content {
  text-align: justify;
  color: #fff;
  scrollbar-width: thin;
  scrollbar-color: var(--cor-principal) #121212;
  padding: 15px;
  font-size: 12px;
  position: absolute;
  top: 40px;
  bottom: 0;
  overflow-y: auto;
}

.sidebar-content::-webkit-scrollbar {
  width: 8px;
}

.sidebar-content::-webkit-scrollbar-thumb {
  background-color: #121212;
  border-radius: 10px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
  background-color: #121212;
}

.sidebar-content::-webkit-scrollbar-track {
  background: #121212;
}

.close-sidebar {
  cursor: pointer;
  color: var(--cor-principal);
  font-size: 20px;
  transition: color .3s;
  position: absolute;
  top: 10px;
  right: 10px;
}

.close-sidebar:hover {
  color: var(--cor-hover);
}

.botao-esporte {
  background: var(--cor-principal);
  border-bottom-right-radius: 25px;
  width: 200px;
  height: 60px;
  display: flex;
  overflow: hidden;
}

.botao-esporte .botao-esporte-card {
  width: 100%;
  height: 100%;
}

.botao-esporte .botao-esporte-btn {
  width: 100%;
  height: 100%;
  color: var(--cor-texto);
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.botao-esporte-btn i {
  margin-right: 5px;
}

.botao-esporte:hover {
  filter: brightness(1.1);
  background-color: var(--cor-hover);
}

.slider-wrapper {
  max-width: 1000px;
  margin: 40px auto;
}

.slider-container {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.slides {
  transition: transform .5s ease-in-out;
  display: flex;
}

.slide {
  flex: 0 0 100%;
  height: 200px;
}

.slide img {
  object-fit: cover;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  display: block;
}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  cursor: pointer;
  background-color: #bbb;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  display: inline-block;
}

.dot.active {
  background-color: var(--cor-principal);
}

.busca-container {
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
}

.busca-form-row {
  justify-content: center;
  margin-bottom: 10px;
  display: flex;
}

.busca-input-icon {
  width: 100%;
  position: relative;
}

.busca-input-icon i {
  color: var(--cor-principal);
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.busca-input {
  color: #fff;
  background-color: #1e1e1e;
  border: none;
  border-radius: 3px;
  width: 100%;
  height: 50px;
  padding: 6px 8px 6px 40px;
  font-size: 16px;
}

.busca-input:focus {
  border: 1px solid var(--cor-principal);
  box-shadow: 0 0 5px var(--cor-principal) 33;
  outline: none;
}

.busca-container, .busca-input-icon, .busca-input {
  box-sizing: border-box;
}

.busca-resultado {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.busca-tabela-resultado {
  border-collapse: collapse;
  color: #fff;
  table-layout: fixed;
  background-color: #1e1e1e;
  border-radius: 3px;
  width: 100%;
  max-width: 1000px;
  margin: 5px auto;
  overflow: hidden;
  box-shadow: 0 4px 12px #0009;
}

.busca-tabela-resultado td {
  vertical-align: middle;
  padding: 8px 10px;
  overflow: hidden;
}

.col-img {
  text-align: center;
  width: 60px;
  padding-left: 5px;
  padding-right: 5px;
}

.col-nome {
  width: 45%;
  font-size: 16px;
}

.col-jogadores {
  text-align: center;
  font-size: 12px;
  white-space: normal !important;
  text-overflow: clip !important;
  overflow: visible !important;
}

.col-jogar {
  text-align: right;
  width: 120px;
}

.busca-img {
  object-fit: contain;
  background-color: #0000;
  border-radius: 5px;
  width: 50px;
  height: 50px;
}

.btn-jogar {
  background-color: var(--cor-principal);
  color: var(--cor-texto);
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 14px;
  transition: background-color .3s;
}

.btn-jogar:hover {
  background-color: var(--cor-hover);
}

.online-dot {
  vertical-align: middle;
  background-color: #0f0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  animation: 1s infinite piscar;
  display: inline-block;
}

@keyframes piscar {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .2;
  }
}

.sem-resultado {
  text-align: center;
  color: #fff;
  background-color: #0000;
  padding: 20px;
  font-size: 16px;
}

.ganhos-container {
  height: 80px;
  margin-top: 40px;
  display: flex;
  overflow: hidden;
}

.ganhos-fixo {
  color: #fff;
  text-align: left;
  box-sizing: border-box;
  background-color: #121212;
  flex-direction: row;
  flex: 0 0 150px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 100%;
  padding: 10px;
  font-weight: bold;
  display: flex;
}

.ganhos-fixo i {
  color: #ffc107;
  font-size: 30px;
}

.ganhos-fixo span {
  line-height: 1.2;
}

.ganhos-rolando {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ganhos-slider {
  align-items: center;
  height: 100%;
  display: flex;
}

.card {
  color: #fff;
  box-sizing: border-box;
  background-color: #1e1e1e;
  border-radius: 8px;
  align-items: center;
  min-width: 220px;
  height: 100%;
  margin-right: 15px;
  padding: 10px;
  display: flex;
}

.card img {
  object-fit: contain;
  background-color: #0000;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.valor {
  color: var(--cor-principal);
  font-weight: bold;
}

.lista-jogos, .aovivo-resultados {
  background-color: #121212;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.lista-jogos .jogos-container {
  box-sizing: border-box;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
}

.titulo-lista-jogos, .aovivo-titulo {
  color: #fff;
  align-items: center;
  margin: 20px 0 10px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
}

.lista-jogos .jogo-card {
  cursor: pointer;
  background-color: #1e1e1e;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 10px;
  height: 230px;
  transition: transform .3s;
  position: relative;
  overflow: hidden;
}

.lista-jogos .jogo-card:hover {
  transform: scale(1.05);
}

.lista-jogos .jogo-img {
  object-fit: contain;
  object-position: top center;
  z-index: 0;
  transform-origin: center;
  background-color: #1e1e1e;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(.94);
}

.lista-jogos .jogo-overlay {
  opacity: 0;
  cursor: default;
  z-index: 10;
  background-color: #0009;
  justify-content: center;
  align-items: center;
  transition: opacity .3s;
  display: flex;
  position: absolute;
  inset: 0;
}

.lista-jogos .jogo-card:hover .jogo-overlay {
  opacity: 1;
}

.lista-jogos .jogar-btn {
  background-color: var(--cor-principal);
  color: var(--cor-texto);
  cursor: pointer;
  z-index: 20;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 14px;
  position: relative;
}

.lista-jogos .jogo-info {
  text-align: center;
  color: #fff;
  width: 100%;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.lista-jogos .jogo-info .nome {
  font-size: 14px;
}

.lista-jogos .jogo-info .jogadores {
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 4px;
  font-size: 12px;
  display: inline-flex;
}

.jogadores-text {
  margin-left: 4px;
}

.btn-ver-mais {
  background-color: var(--cor-principal);
  color: var(--cor-texto);
  cursor: pointer;
  text-align: center;
  border: none;
  border-radius: 5px;
  margin: 20px auto 0;
  padding: 10px 20px;
  font-size: 16px;
  transition: background-color .3s;
  display: block;
}

.btn-ver-mais:hover {
  background-color: var(--cor-hover);
}

.overlay {
  z-index: 999;
  background-color: #000000e6;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.overlay.show {
  display: block;
}

.modal {
  z-index: 1000;
  background-color: #1e1e1e;
  border-radius: 5px;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px #0009;
}

.modal-content h2 {
  color: var(--cor-principal);
  text-align: center;
  margin: 0 0 15px;
  font-size: 24px;
}

.modal.show {
  display: block;
}

.close-modal {
  color: var(--cor-principal);
  cursor: pointer;
  font-size: 18px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.close-modal:hover {
  color: var(--cor-hover);
}

.form-row {
  flex-wrap: wrap;
  gap: 15px;
  display: flex;
}

.form-row .input-icon {
  flex: 1;
}

.input-icon {
  margin-bottom: 5px;
  position: relative;
}

.input-icon i {
  color: var(--cor-principal);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.input-icon i:hover {
  color: var(--cor-hover);
}

.input-icon input, .input-icon textarea {
  color: #fff;
  box-sizing: border-box;
  background-color: #121212;
  border: none;
  border-radius: 3px;
  outline: none;
  width: 100%;
  height: 45px;
  padding-left: 35px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.input-icon input::placeholder, .input-icon textarea::placeholder {
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.submit-button {
  background-color: var(--cor-principal);
  width: 100%;
  color: var(--cor-texto);
  cursor: pointer;
  border: none;
  border-radius: 5px;
  margin-top: 0;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.submit-button:hover {
  background-color: var(--cor-hover);
}

input.submit-button.recuperar, input.submit-button.abrir-conta, input.submit-button.contato {
  margin-top: 10px !important;
}

.termos {
  color: #fff;
  text-align: justify;
  font-size: 12px;
  line-height: 1;
}

.termos a {
  color: var(--cor-principal);
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}

.termos a:hover {
  color: var(--cor-hover);
  text-decoration: underline;
}

.recover-password {
  cursor: pointer;
  justify-content: flex-end;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 10px;
  display: flex;
}

.recover-password a, .log-in a, .create-account a {
  color: var(--cor-principal);
  font-size: 14px;
  text-decoration: none;
}

.recover-password a:hover, .log-in a:hover, .create-account a:hover {
  color: var(--cor-hover);
}

.log-in, .create-account {
  cursor: pointer;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
  display: flex;
}

#alerta-cadastro, #alerta-login, #alerta-senha, #alerta-contato {
  width: 100%;
  margin-top: -10px;
  font-size: 14px;
  display: none;
}

.alertanao {
  color: #fe0000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  line-height: 24px;
  display: block;
}

.alertasim {
  width: 100%;
  color: var(--cor-principal);
  text-align: center;
  cursor: pointer;
  line-height: 24px;
  display: block;
}

.online-dot-red {
  vertical-align: middle;
  background-color: #ff3b30;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  animation: 1s infinite piscarred;
  display: inline-block;
}

@keyframes piscarred {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.aovivo-wrapper {
  width: 400px;
  margin: 0 auto;
}

#aovivo-container {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  display: flex;
}

.aovivo-entry {
  color: #fff;
  box-sizing: border-box;
  background: #1e1e1e;
  border-radius: 5px;
  align-items: center;
  width: 100%;
  padding: 10px;
  display: flex;
  box-shadow: 0 4px 12px #0009;
}

.aovivo-entry img {
  border-radius: 5px;
  width: 40px;
  height: 40px;
}

.aovivo-info {
  margin-left: 8px;
  font-size: 13px;
}

.aovivo-amount {
  color: var(--cor-principal);
  font-weight: bold;
}

.footer {
  color: #fff;
  width: 100%;
  padding: 40px 0 20px;
}

.footer .container-footer {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 5px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-column:first-child {
  justify-content: center;
  align-items: center;
  min-height: 100%;
  display: flex;
}

.footer-column h4 {
  color: var(--cor-principal);
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-column ul {
  padding: 0;
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  color: #ccc;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: none;
}

.footer img {
  max-width: 150px;
}

.footer img.pix-logo {
  max-width: 100px !important;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 24px;
  transition: color .3s;
}

.footer-line {
  border-top: 1px solid #444;
  max-width: 1000px;
  margin: 30px auto;
}

.footer-text {
  color: #ccc;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 12px;
  line-height: 1.6;
}

.ver-mais-btn {
  background-color: var(--cor-principal);
  color: var(--cor-texto);
  cursor: pointer;
  text-align: center;
  border: none;
  border-radius: 5px;
  margin: 10px auto 0;
  padding: 10px 20px;
  font-size: 16px;
  transition: background-color .3s;
  display: block;
}

.ver-mais-btn:hover {
  background-color: var(--cor-hover);
}

.footer-centered-img {
  text-align: center;
  max-width: 1000px;
  margin: 20px auto;
}

.selo-img {
  max-width: 350px !important;
  height: auto !important;
}

.footer-bottom {
  text-align: center;
  color: #aaa;
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 13px;
}

.footer-bottom span {
  margin: 0 8px;
}

@media (max-width: 768px) {
  .bonus-cadastro {
    font-size: 3.5vw;
  }

  .modal {
    width: calc(100% - 80px);
    max-width: none;
  }

  .input-icon input {
    font-size: 16px;
  }

  .footer .container-footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    display: flex;
  }

  .footer-column:first-child {
    display: none;
  }

  .footer-column {
    box-sizing: border-box;
    text-align: center;
    flex-direction: column;
    flex: 100%;
    align-items: center;
    margin: 5px 0;
    display: flex;
  }

  .footer-column:nth-child(2), .footer-column:nth-child(3) {
    flex: 47%;
    order: 1;
  }

  .footer-column:nth-child(4), .footer-column:nth-child(5) {
    flex: 47%;
    order: 2;
  }

  .footer-column ul {
    padding-left: 0;
    list-style: none;
  }

  .footer-column img, .footer-column .pix-logo, .footer-column .social-icons {
    margin: 0 auto;
    display: block;
  }

  .footer-column h4 {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    display: flex;
  }

  .busca-container {
    padding: 0 15px;
  }

  .busca-input-icon {
    max-width: 100%;
  }

  .col-nome {
    width: 70%;
    font-size: 14px;
  }

  .col-jogadores {
    text-align: center;
    width: 40%;
    font-size: 12px;
    white-space: normal !important;
    text-overflow: clip !important;
    overflow: visible !important;
  }

  .col-jogar {
    text-align: right;
    width: 80px;
  }

  .lista-jogos {
    padding: 0 0 0 5px;
  }

  .lista-jogos .jogos-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
    padding-bottom: 10px;
    display: flex;
    overflow-x: auto;
  }

  .lista-jogos .jogo-card {
    flex-shrink: 0;
    min-width: 120px;
    height: 182px;
  }

  .lista-jogos .jogos-container::-webkit-scrollbar {
    display: none;
  }

  .lista-jogos .jogo-img {
    transform: scale(.9);
  }

  .lista-jogos .jogo-info .nome {
    font-size: 12px;
  }

  .lista-jogos .jogar-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .aovivo-resultados {
    margin-top: -30px;
  }

  .botao-esporte {
    z-index: 998;
    border-radius: 0 25px 25px 0;
    width: 70%;
    height: 45px;
    position: fixed;
  }

  .botao-esporte .botao-esporte-btn {
    font-size: 15px;
  }

  .botao-esporte-btn i {
    margin-right: 8px;
  }
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/