

:root {
       /*
     * Paleta revisada
     * Dica: Você pode ajustar a saturação ou a luminosidade conforme a necessidade
     */

    /* Cores principais - suaves */
    --primary-green:   #3A945E;  /* Verde suave */
    --primary-red:     #D86565;  /* Vermelho suave */
    --primary-yellow:  #ffc701;  /* Amarelo dourado suave */
    --primary-blue:    #0060e2;  /* Azul suave */

    /* Cores secundárias - ainda mais claras (para hover, destaque etc.) */
    --secondary-black: #000;  /* Verde claro */
    --secondary-red:   #E27E7E;  /* Vermelho claro */
    --secondary-yellow:#F5D07B;  /* Amarelo claro */
    --secondary-blue:  #0060e2;  /* Azul claro */

    /* Cores de suporte */
    --primary-dark:    #0060e2;  /* Escuro para textos */
    --primary-light:   #F8FAFC;  /* Claro para fundos */

    /* Cores para Header claro e texto escuro */
    --header-bg:       var(--primary-light);
    --header-text:     #ffc903
  }
body {
    padding-bottom: 100px; /* Altura do menu fixo + margem extra */
}
  /* Exemplo de uso no header com fundo branco e texto preto */
  header {
    background-color: var(--header-bg-light);
    color: var(--text-dark);
    padding: 1rem;
    text-align: center;
    /* Crie um contraste legal no limite inferior */
    border-bottom: 4px solid var(--gradient-purple);
  }

  /* Se quiser um header com gradiente “irado”, troque por algo assim: */
  /*
  header {
    background: linear-gradient(
      90deg,
      var(--gradient-pink) 0%,
      var(--gradient-purple) 100%
    );
    color: var(--text-light);
    padding: 1rem;
    text-align: center;
  }
  */

  /* Exemplo de seções ou banners com gradiente pink->roxo e texto branco */
  .section-gradient {
    background: linear-gradient(
      45deg,
      var(--gradient-pink),
      var(--gradient-purple)
    );
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
  }

  /* Botões com fundo gradiente, texto branco */
  .btn-gradient {
    background: linear-gradient(
      45deg,
      var(--gradient-pink),
      var(--gradient-purple)
    );
    color: var(--text-light);
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
  }

  /* Hover para “acender” o gradiente */
  .btn-gradient:hover {
    filter: brightness(110%);
  }

  /* Para um botão branco com texto pink-roxo */
  .btn-white {
    background-color: var(--text-light);
    color: var(--gradient-pink);
    border: 2px solid var(--gradient-pink);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
  }

  .btn-white:hover {
    color: var(--gradient-purple);
    border-color: var(--gradient-purple);
  }



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth; /* Para scroll suave nas âncoras */
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
.maskLoader{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: #00000096;
    top: 0;
    display: none;
}
/* HTML: <div class="loader"></div> */
.loader-animation {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
      radial-gradient(farthest-side,#ffa516 94%,#0000) top/8px 8px no-repeat,
      conic-gradient(#0000 30%,#ffa516);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
    animation: l13 1s infinite linear;
    margin: 0 auto;
  }
  @keyframes l13{
    100%{transform: rotate(1turn)}
  }

/* HTML: <div class="loaderInfo"></div> */
.loaderInfo {
    display: inline-block;
    font-weight: bold;
    font-family: monospace;
    font-size: 30px;
    color: #fff;
    background: linear-gradient(90deg, #000 25%, #ffa516 0 50%, #ffa516 0 75%, #ffa516 0) 0 0 / 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: l10 5s infinite cubic-bezier(0.3, 1, 0, 1);
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    text-align: center;
}
.loaderInfo:before {
    content: "Aguarde...";
    animation: textChange 10s infinite;
}

@keyframes textChange {
    0%, 25% {
        content: "Aguarde...";
    }
    26%, 50% {
        content: "Estamos verificando a nota fiscal...";
    }
    51%, 75% {
        content: "Processando as informações para gerar seu número da sorte...";
    }
    76%, 100% {
        content: "Quase lá! Concluindo o processo...";
    }
}
@keyframes l10 {
    25% {background-position: calc(1*100%/3) 0}
    50% {background-position: calc(2*100%/3) 0}
    75% {background-position: calc(3*100%/3) 0}
    100%{background-position: calc(4*100%/3) 0}
}

.logo {
    height: 60px;
}
.logo img{
    max-width:80%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-links a:hover {
    color: var(--secondary-blue);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #93c5fd;
}

/* Seções */
section {

}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000096;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#invoiceKey{
    display: none;
}

.modal-content {
    background-color: #fff;
    color: #000;
    border-radius: 8px;
    text-align: center;
    width: 800px;
    max-height: 90vh;
    overflow: auto;
}

.qr-reader {
    border: 2px solid #000;
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
}

#qr-reader-modal {
    width: 100%;
}

#video {
    width: 90%;
    border: 2px solid #000;
    border-radius: 12px;
    margin: 0 auto;
}


input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* Banner */
#inicio {
    color: var(--primary-light);
    padding-top: 6.5rem; /* Compensar o header fixo */
    text-align: center;
    z-index: 1;
    position: relative;
}

@media screen and (max-width: 768px) {
    .banner {
      background-color: transparent;
      position: relative;
      max-width: 374px;
      height: 374px;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
      margin: 0 auto;
      z-index: 0;
    }
  }

  /* Estilos para PC (desktop) */
  @media screen and (min-width: 769px) {
    .banner {
      /* Exemplo de ajustes diferentes para desktop */
      /* max-width: 700px;       
      height: 700px;         */

        max-width: 600px;
        height: 598px;  
      margin: 0px auto;      /* maior espaçamento externo */
      border-radius: 20px;    /* pode reduzir o “arredondamento” */
      box-shadow: 8px 8px 40px rgba(0, 0, 0, 0.25); /* sombra adaptada */
      position: relative;
      z-index: 0;
      /* Demais propriedades adicionais desejadas */
    }
  }

  /* Efeito azul com pseudo-elemento */
  .banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente em tons de azul */

    pointer-events: none;
    z-index: 1; /* Fica sobre a imagem, mas abaixo de outros conteúdos do .banner */
  }
 h2 {
   padding:2rem 0 0 0;
}
.banner h1,.banner h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}
.btn-yellow {
    background-color: var(--primary-gold);
    color: var(--primary-light);
}

.btn-yellow:hover {
    background-color: var(--secondary-gold);
}

.btn-blue {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    
}
.form-control {
    width: 100%;
    padding: 1.25rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    font-weight: 500;
}
.btn-blue:hover {
    background-color: var(--secondary-blue);
    color: var(--primary-yellow);

}

.btn-red {
    background-color: var(--primary-red);
    color: var(--primary-light);
}
.btn-red:hover {
    background-color: var(--secondary-red);
}

.btn-green {
    background-color: var(--primary-green);
    color: var(--primary-light);
}

.btn-green:hover {
    background-color: var(--secondary-green);
}


/* Próximo Sorteio */
#proximo-sorteio {
    background-color: var(--primary-lighty);
    color: var(--primary-dark);
}

.next-draw, .finished-lotteries{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    /* remove ou mude flex-direction para row */
    flex-direction: row; /* aqui está a mudança principal */
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 10px; */
}

/* .hero {
    position: relative;
    width: 400px;
    min-width: 400px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
    margin: 20px;
} */

/* Cards (Hero) */
.hero {
    width: 100%;
    max-width: 320px; /* Mais responsivo que 400px fixos */
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    margin: 0 auto;
    background-color: white;
}
.hero-profile-img {
    background-size: cover;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.hero-description-bk {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    position: absolute;
    top: 52%;
    left: -5px;
    height: 65%;
    width: 108%;
}

.hero-logo {
    background-size: cover;
    width: 90px;
    height: 90px;
    border-radius: 20px;
    position: absolute;
    bottom: 30%;
    left: 30px;
    overflow:hidden;
}

.hero-description {
    position: absolute;
    color: #fff;
    font-weight: 900;
    left: 150px;
    bottom: 35%;
}

.hero-btn-awards {
    position: absolute;
    color: #fff;
    right: 30px;
    bottom: 20%;
    padding: 3px 12px;
   border: 1px solid #fff;
    border-radius: 20px;
    background: linear-gradient(125deg, #254bff, #00c0ea);
}

.hero-btn-rules {
    position: absolute;
    color: #fff;
    right: 30px;
    bottom: 5%;
    padding: 3px 12px;
    border: 1px solid #fff;
    border-radius: 20px;
    background: linear-gradient(125deg, #254bff, #00c0ea);

}

.hero-btn-rules  a,.hero-btn-awards a {
    color: #fff;
}

.hero-date {
    position: absolute;
    color: #fff;
    left: 30px;
    bottom: 10%;
    text-align: left;
}
/* END CARD DESIGN */

/* Sorteios */
#sorteios {
    background-color: #f3f4f6;
    color: var(--primary-dark);
}

/* Dúvidas */
#duvidas {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(125deg, #254bff, #00c0ea);
    color: var(--primary-light);
    padding: 3rem 0;
}
.footer ul {
    list-style: none;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer a {
    color: var(--primary-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}
.footer a:hover {
    color: var(--secondary-yellow);

}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 2rem;
}
/* Seção de Dúvidas */
.question-wrapper1 {
    background: var(--primary-light);
    border-radius: 10px;
    padding: 2rem;
}

/* Estilo das Tabs */
.tabitem{
    display: none
}
.question-tab {
    margin-bottom: 2rem;
}

.tablinks {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.tablinks .links {
    margin: 0;
}

.tablink {
    background: none;
    border: 1px solid var(--primary-blue);
    color: var(--primary-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tablinks .links.active .tablink,
.tablink:hover {
    background: linear-gradient(125deg, #254bff, #00c0ea);
    color: var(--primary-light);
}

/* Estilo do Accordion */
.accordion-single {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.accordion-btn {
    background: none;
    border: none;
    padding: 1rem 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.header-area {
    margin: 0;
}

.fs20 {
    font-size: 1.25rem;
}

.fw_700 {
    font-weight: 700;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.accordion-single.active .faq-icon {
    transform: rotate(180deg);
}

.tabcontents .active {
    display: block!important;
}

.content-area {
    padding: 1rem;
    display: none;
}

.content-body p {
    opacity: 0.8;
    margin: 0;
}

/* Estilos do Título */
.section__title {
    margin-bottom: 3rem;
}

.subtitle-head {
    margin-bottom: 1rem;
}

.s1-clr {
    color: var(--primary-blue);
}

.display-four {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.act4-clr {
    color: var(--primary-gold);
}

.act4-underline {
    position: relative;
}

.act4-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
}

/* Classes Utilitárias */
.pt-120 {
    padding-top: 7.5rem;
}

.pb-120 {
    padding-bottom: 7.5rem;
}
.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-table100 {
    width: 100%;
    min-height: 100vh;
    background: #c850c0;
    background: -webkit-linear-gradient(45deg, #4158d0, #c850c0);
    background: -o-linear-gradient(45deg, #4158d0, #c850c0);
    background: -moz-linear-gradient(45deg, #4158d0, #c850c0);
    background: linear-gradient(45deg, #4158d0, #c850c0);

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 33px 30px;
}

.wrap-table100 {
    padding-top: 10px;
}

table {
    border-spacing: 1;
    border-collapse: collapse;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
table * {
    position: relative;
}
table td, table th {
    padding-left: 8px;
}
table thead tr {
    height: 60px;
    background: linear-gradient(125deg, #254bff, #00c0ea);
}
.button-bg{
    background: linear-gradient(125deg, #254bff, #00c0ea);
    color: #fff;;
}
table tbody tr {
    height: 50px;
}
table tbody tr:last-child {
    border: 0;
}
table td, table th {
    text-align: left;
}
table#table-awards td, table#table-awards th {
    text-align: center;
}
table td.l, table th.l {
    text-align: right;
}
table td.c, table th.c {
    text-align: center;
}
table td.r, table th.r {
    text-align: center;
}


.table100-head th{
    font-size: 18px;
    color: #000;
    line-height: 1.2;
    font-weight: unset;
}

tbody tr:nth-child(even) {
    background-color: transparent;
}
table#awardsModal-1 tbody tr {
    color: #000;
    font-size: 15px;
    line-height: 1.2;
    font-weight: unset;
} 
table#tableCheckBody tbody tr {
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    font-weight: unset;
}

tbody tr:hover {
    color: #4a4a4a;
    cursor: pointer;
}

.column1 {
    width: 260px;
    padding-left: 40px;
}

.column2 {
    width: 160px;
}

.column3 {
    width: 245px;
}

.column4 {
    width: 110px;
    text-align: right;
}

.column5 {
    width: 170px;
    text-align: right;
}

.column6 {
    width: 222px;
    text-align: right;
    padding-right: 62px;
}
.section-content {
    text-align: center;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate{
    color:#fff !important;
}
@media screen and (max-width: 992px) {
  
    table tbody tr {
        height: auto;
        padding: 37px 0;
    }
    table tbody tr td {
        margin-bottom: 24px;
    }
    table tbody tr td:last-child {
        margin-bottom: 0;
    }
    table tbody tr td:before {
        font-family: OpenSans-Regular;
        font-size: 14px;
        color: #fff;
        line-height: 1.2;
        font-weight: unset;
        position: absolute;
        top: 0;
    }

    #tableAwards tbody tr td:nth-child(1):before {
        content: "Quantidade";
    }
    #tableAwards tbody tr td:nth-child(2):before {
        content: "Descrição";
    }
    #tableAwards tbody tr td:nth-child(3):before {
        content: "Valor";
    }
    #tableAwards tbody tr td:nth-child(4):before {
        content: "Total";
    }
    .column4,
    .column5,
    .column6 {
        text-align: left;
    }

    .column4,
    .column5,
    .column6,
    .column1,
    .column2,
    .column3 {
        width: 100%;
    }

    tbody tr {
        font-size: 14px;
    }
    .next-draw, .finished-lotteries {
        flex-direction: column;
    }
    .section-content {
        text-align: center;
    }

}

@media (max-width: 576px) {
    .container-table100 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-content {
        text-align: center;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    color:#000;
}
.alertModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.alertModal .modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
}

ul.error-list {
    list-style-type: disc; /* Muda o estilo dos marcadores */
    padding-left: 20px; /* Adiciona recuo para os itens */
    color: red; /* Deixa o texto dos erros em vermelho */
}

ul.error-list li {
    margin-bottom: 5px; /* Adiciona um espaço entre os itens */
}

/* Responsividade melhorada */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 1rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }


    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
        width: 100%;
        text-align: center;
    }

    /* Menu hambúrguer animado */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .menu-toggle span {
        background-color: var(--primary-gold);
    }

    .nav-links a:hover {
        background-color: var(--primary-gold);
        color: var(--primary-dark);
    }
    .tablinks {
        flex-direction: column;
    }

    .tablink {
        width: 100%;
        text-align: center;
    }

    .display-four {
        font-size: 2rem;
    }

    .question-wrapper1 {
        padding: 1rem;
    }
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    background: linear-gradient(125deg, #254bff, #00c0ea);
    padding: 1rem 0;
    z-index: 1000;
}

/* Versões alternativas do gradiente: */

/* Opção 1 - Gradiente horizontal */
.header-horizontal {
    background: linear-gradient(90deg, #254bff, #00c0ea);
}

/* Opção 2 - Gradiente diagonal mais suave */
.header-diagonal-suave {
    background: linear-gradient(135deg, #254bff, #00c0ea);
}

/* Opção 3 - Gradiente com ponto central */
.header-radial {
    background: radial-gradient(circle, #254bff, #00c0ea);
}

/* Opção 4 - Gradiente com múltiplas paradas */
.header-multicolor {
    background: linear-gradient(125deg, #254bff 0%, #1a66d9 50%, #00c0ea 100%);
}

/* Opção 5 - Com transparência para efeito glassmorphism */
.header-glass {
    background: linear-gradient(125deg, rgba(37, 75, 255, 0.9), rgba(0, 192, 234, 0.9));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    position: relative;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 80px;
    height: auto;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 1rem;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: transform 0.3s ease-in-out;
}

.nav-links {
    display: flex;
    gap: 2rem;
    position: absolute;
    right: 1rem;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 1rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Ajuste do background do banner */
.banner {
    background-position: center;
    background-size: cover;
    position: relative;
}

@media screen and (max-width: 768px) {
    .banner {
        background-size: contain;
    }
}



/* Ajuste dos containers */
.next-draw,
.finished-lotteries {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centraliza no desktop */
    gap: 20px;
    padding: 2rem 0;
}


/* Responsividade mobile */
@media screen and (max-width: 768px) {
    .hero {
        max-width: 90%;
        margin: 10px auto;
    }

    .hero-description,
    .hero-date,
    .hero-btn-awards,
    .hero-btn-rules {
        font-size: 0.9rem;
    }

    .hero-logo {
        width: 80px;
        height: 74px;
        left: 20px;
        bottom: 35%;
    }

    .hero-description {
        left: 120px;
        bottom: 38%;
    }

    .hero-date {
        left: 20px;
        bottom: 12%;
    }

    .hero-btn-awards,
    .hero-btn-rules {
        right: 20px;
        padding: 8px 12px;
    }
}
.menu-icon-main {
    animation: pulse-bounce 3s ease-in-out infinite;
}

@keyframes pulse-bounce {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 75, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(37, 75, 255, 0.5);
    }
}

body:has(#checkModal:not(.hidden)) nav {
    display: none !important;
}


button#inputCloseCheckModal{
    top:2.5rem;
}

/* 

button#inputCloseCheckModal {
  position: absolute;
  right: 2%;
  top: 44%;
  z-index: 10;
}

@media (max-width: 768px) {
  button#inputCloseCheckModal {
    right: -2%;
    top: 46%;
    padding: 0.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 468px) {
    button#inputCloseCheckModal {
        right: 3%;
        top: 8%;
        padding: 0.5rem;
        font-size: 1rem;
    }
}
@media (max-width: 390px) {
    button#inputCloseCheckModal {
        right: 1%;
        top: 34%;
        padding: 0.5rem;
        font-size: 1rem;
    }
} */
.gradient-bg{
    background: linear-gradient(125deg, #254bff, #00c0ea);
}
        /* Advanced Gamification Styles */

/* Animated Background */
@keyframes backgroundShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gamification-bg {
    background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460, #1a1a2e);
    background-size: 400% 400%;
    animation: backgroundShift 15s ease infinite;
}

/* Combat-style UI Elements */
.combat-ui {
    position: relative;
    overflow: hidden;
}

.combat-ui::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent);
    animation: sweep 3s infinite;
}

@keyframes sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Rank Badges */
.rank-badge {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.rank-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.rank-badge.champion {
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    color: #000;
    border: 3px solid #fff;
}

.rank-badge.podium {
    background: linear-gradient(135deg, #c0c0c0 0%, #e6e6fa 100%);
    color: #000;
    border: 3px solid #ffd700;
}

.rank-badge.top10 {
    background: linear-gradient(135deg, #cd7f32 0%, #daa520 100%);
    color: #fff;
    border: 3px solid #ffd700;
}

.rank-badge.normal {
    background: linear-gradient(135deg, #4a4a4a 0%, #6a6a6a 100%);
    color: #fff;
    border: 3px solid #888;
}

/* Progress Bars with Animation */
.progress-bar-animated {
    height: 20px;
    background: #2d2d44;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 2px solid #ffd700;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 8px;
    position: relative;
    transition: width 2s ease-out;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}



.gradient-main-orange {
    background: linear-gradient(341deg, #003072, #0060e2);
}        
.gradient-main {
            background: linear-gradient(125deg, #254bff, #00c0ea);
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .glow-shadow {
            box-shadow: 0 8px 32px rgba(37, 75, 255, 0.3);
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .section-collapsed {
            max-height: 60px;
            overflow: hidden;
        }
        
        .transition-height {
            transition: max-height 0.4s ease-in-out;
        }

        .animate-bounce-slow {
            animation: bounce 2s infinite;
        }

        .pulse-ring {
            animation: pulse-ring 2s ease-out infinite;
        }

        @keyframes pulse-ring {
            0% { transform: scale(0.33); }
            80%, 100% { opacity: 0; transform: scale(1.2); }
        }

        .menu-text{
            color:#fff;
        }