* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .centerAll {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 45px;
  }

  /* Header Fixo */
  .header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    background-image: url(bgbg.png);
    opacity: 0.9;
    box-shadow: 0 2px 20px rgba(0, 255, 157, 0.1);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;
  }

  .header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

  }

  .header-fixed .logo {
    display: block;
    max-width: 90px;
    height: auto;
    filter: brightness(1.2);
  }

  /* Menu Hamburguer */
  .menu-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 25px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
  }

  .menu-toggle span {
    width: 100%;
    height: 3px;
    background: #00ff9d;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
  }

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

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

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

  /* Menu de Navegação */
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    background: #1a1a1a;
    box-shadow: -2px 0 20px rgba(0, 255, 157, 0.2);
    padding: 30px 0;
    transition: right 0.3s ease;
    z-index: 999;
    border-radius: 10px 0 0 10px;
    border-left: 2px solid #2a2a2a;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    display: block;
    padding: 15px 30px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    border-left: 3px solid transparent;
  }

  .nav-link:hover {
    background: #252525;
    border-left-color: #00ff9d;
    color: #00ff9d;
  }

  /* Seção Hero */
  .hero {
    margin-top: 120px;
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 157, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    position: relative;
    z-index: 1;
  }

  .hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #b0b0b0;
    position: relative;
    z-index: 1;
  }

  .banner-image {
    margin: 40px 0;
    position: relative;
    z-index: 1;
  }

  .banner-image img {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.2);
    border: 1px solid #2a2a2a;
  }

  .cta-button {
    background: linear-gradient(135deg, #00ff9d 0%, #00d4aa 100%);
    color: #0a0a0a;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 25px rgba(0, 255, 157, 0.4);
    position: relative;
    z-index: 1;
  }

  .cta-button:hover {
    background: linear-gradient(135deg, #00d4aa 0%, #00ff9d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 157, 0.6);
  }

  .disclaimer-small {
    font-size: 0.85rem;
    margin-top: 15px;
    color: #808080;
  }

  /* Seção Como Funciona */
  .como-funciona {
    padding: 40px 0;
    background: #0f0f0f;
  }

  .como-funciona h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  }

  .step-item {
    text-align: center;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.1);
    transition: transform 0.3s;
    border: 1px solid #2a2a2a;
  }


  .step-item i {
    font-size: 3rem;
    color: #00ff9d;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.5));
  }

  .step-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #e0e0e0;
  }

  /* Seção Prêmios */
  .premios {
    padding: 40px 0;
    text-align: center;
    background: #0a0a0a;
  }

  .premios h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
  }

  .premios-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .premio-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .premio-box h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
  }

  .premio-box-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
  }

  .premio-box-2 h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
  }

  .premio-image {
    margin: 30px 0px 0px 0px;
  }

  .premio-image img {
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.2);
    border: 1px solid #2a2a2a;
  }

  .premio-image-2 {
    margin: 30px 0px 0px 0px;
  }

  .premio-image-2 img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.2);
    border: 1px solid #2a2a2a;
  }

  /* Seção Comprar */
  .comprar {
    padding: 40px 0;
    background: #0f0f0f;
  }

  .comprar h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
  }

  .numeros-grid-container {
    max-height: 500px;
    overflow-y: auto;
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    background: #1a1a1a;
    margin-bottom: 30px;
  }

  .numeros-grid-container::-webkit-scrollbar {
    width: 10px;
  }

  .numeros-grid-container::-webkit-scrollbar-track {
    background: #0f0f0f;
    border-radius: 5px;
  }

  .numeros-grid-container::-webkit-scrollbar-thumb {
    background: #00ff9d;
    border-radius: 5px;
  }

  .numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 6px;
  }

  .numero-item {
    padding: 1px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    border: 2px solid transparent;
    max-width: 70px;
  }

  .numero-item.disponivel {
    background: #1a4d3d;
    color: #00ff9d;
    border-color: #2a6d5d;
  }

  .numero-item.vendido {
    background: #2a2a2a;
    color: #666;
    cursor: not-allowed;
    opacity: 0.5;
  }

  .numero-item.selecionado {
    background: #00ff9d;
    color: #0a0a0a;
    border-color: #00d4aa;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
  }

  .numero-item:hover:not(.vendido) {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.3);
  }

  .comprar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .total-info {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ff9d;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .numeros-selecionados {
    font-size: 1rem;
    color: #b0b0b0;
    margin-left: 0px;
  }

  .chance-vencer {
    font-size: 1.2rem;
    color: #00d4aa;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.4);
  }

  /* Seção Por Que Participar */
  .por-que-participar {
    padding: 40px 0;
    background: #0a0a0a;
  }

  .por-que-participar h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
  }

  .beneficios-list {
    max-width: 800px;
    margin: 0 auto;
  }

  .beneficio-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s;
  }

  .beneficio-item:hover {
    border-color: #00ff9d;
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.1);
  }

  .beneficio-item .numero {
    background: linear-gradient(135deg, #00ff9d 0%, #00d4aa 100%);
    color: #0a0a0a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.4);
  }

  .beneficio-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
  }

  /* Seção Transparência */
  .transparencia {
    padding: 40px 0;
    background: #0f0f0f;
  }

  .transparencia h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
  }

  .regras-list {
    max-width: 800px;
    margin: 0 auto;
  }

  .regra-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 255, 157, 0.1);
    border: 1px solid #2a2a2a;
    transition: all 0.3s;
  }

  .regra-item:hover {
    border-color: #00ff9d;
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.15);
  }

  .hitColor {
    color: #00ff9d !important;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.3) !important;
  }

  .regra-item .numero {
    background: linear-gradient(135deg, #00d4aa 0%, #00ff9d 100%);
    color: #0a0a0a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.4);
  }

  .regra-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e0e0e0;
  }

  .regra-item a {
    color: #00ff9d;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
  }

  .regra-item a:hover {
    text-decoration: underline;
  }

  /* Footer */
  .footer {
    background: #1a1a1a;
    background-image: url(bgbg.png);
    background-position: contain;
    opacity: 0.9;
    color: #e0e0e0;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #2a2a2a;
  }

  .footer .cnpj {
    margin: 10px 0;
    color: #808080;
  }

  .selos-seguranca {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    border-radius: 10px;
  }

  .selos-seguranca img {
    max-height: 150px;
    filter: brightness(0.9);
    border-radius: 10px;
  }

  /* Botão Flutuante WhatsApp */
  .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
  }

  .whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.6);
    transition: all 0.3s;
  }

  .whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8);
  }

  .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 255, 157, 0.3);
    white-space: nowrap;
    font-size: 0.9rem;
    color: #e0e0e0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border: 1px solid #2a2a2a;
  }

  .whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
  }

  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
  }

  .modal-content {
    background: #1a1a1a;
    margin: 20px auto;
    padding: 40px;
    border: 2px solid #00ff9d;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
    /* ADICIONAR ESTAS PROPRIEDADES */
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
  }

  /* Scrollbar personalizada para modal */
  .modal-content::-webkit-scrollbar {
    width: 10px;
  }

  .modal-content::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 10px;
  }

  .modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00ff9d 0%, #00d4aa 100%);
    border-radius: 10px;
  }

  .modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00d4aa 0%, #00ff9d 100%);
  }

  /* Ajuste do botão fechar para ficar fixo no topo */
  .close {
    position: sticky;
    top: 0;
    right: 0;
    color: #00ff9d;
    float: right;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
    background: #1a1a1a;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: -10px -10px 10px 10px;
  }

  .close:hover,
  .close:focus {
    color: #fff;
    background: #00ff9d;
    transform: rotate(90deg);
  }

  /* Modal Aleatório - ajustes específicos */
  .selecao-aleatoria {
    text-align: center;
    padding: 20px;
    background: #0f0f0f;
    border-radius: 15px;
    margin-bottom: 30px;
  }

  .selecao-aleatoria label {
    display: block;
    color: #00ff9d;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .contador-aleatorio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
  }

  .btn-contador {
    background: linear-gradient(135deg, #00ff9d 0%, #00d4aa 100%);
    color: #0a0a0a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .btn-contador:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.5);
  }

  .btn-contador:active {
    transform: scale(0.95);
  }

  #quantidadeAleatoria {
    background: #1a1a1a;
    color: #00ff9d;
    border: 2px solid #00ff9d;
    padding: 15px 20px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    width: 100px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
  }

  .info-aleatoria {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .info-aleatoria strong {
    color: #00ff9d;
  }

  .info-aleatoria span {
    color: #fff;
    font-weight: 700;
  }

  .numeros-sorteados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
    max-height: 250px;
    overflow-y: auto;
    padding: 20px;
    background: #0f0f0f;
    border-radius: 10px;
    border: 2px solid #00ff9d;
    margin-bottom: 20px;
  }

  .numeros-sorteados-grid::-webkit-scrollbar {
    width: 8px;
  }

  .numeros-sorteados-grid::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 5px;
  }

  .numeros-sorteados-grid::-webkit-scrollbar-thumb {
    background: #00ff9d;
    border-radius: 5px;
  }

  .numero-sorteado-item {
    background: linear-gradient(135deg, #00ff9d 0%, #00d4aa 100%);
    color: #0a0a0a;
    padding: 15px 10px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 3px 15px rgba(0, 255, 157, 0.3);
    animation: fadeInScale 0.3s ease-in-out;
  }

  @keyframes fadeInScale {
    0% {
      opacity: 0;
      transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .btn-sortear-novamente {
    background: #2a2a2a;
    color: #00ff9d;
    border: 2px solid #00ff9d;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
  }

  .btn-sortear-novamente:hover {
    background: linear-gradient(135deg, #00ff9d 0%, #00d4aa 100%);
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.3);
  }

  /* Formulário dentro da modal */
  .form-dados {
    background: #0f0f0f;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #2a2a2a;
  }

  .form-dados h3 {
    margin-bottom: 20px;
    text-align: center;
  }

  .input-group {
    margin-bottom: 20px;
  }

  .input-group label {
    display: block;
    color: #00ff9d;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .input-group input {
    width: 100%;
    padding: 12px 15px;
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
  }

  .input-group input:focus {
    outline: none;
    border-color: #00ff9d;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.2);
  }

  /* Ver lista e Ver meus números */
.ver-lista-container {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: #0f0f0f;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
}

.ver-lista-link {
  color: #00ff9d;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s;
  text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
}

.ver-lista-link:hover {
  color: #fff;
  background: rgba(0, 255, 157, 0.1);
  text-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
  transform: translateY(-2px);
}

/* Modal Lista de Números */
.modal-lista {
  max-width: 900px;
}

.tabela-numeros-container {
  max-height: 500px;
  overflow-y: auto;
  margin-top: 20px;
  border-radius: 10px;
  border: 2px solid #2a2a2a;
}

.tabela-numeros-container::-webkit-scrollbar {
  width: 10px;
}

.tabela-numeros-container::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-radius: 5px;
}

.tabela-numeros-container::-webkit-scrollbar-thumb {
  background: #00ff9d;
  border-radius: 5px;
}

.tabela-numeros {
  width: 100%;
  border-collapse: collapse;
  background: #1a1a1a;
}

.tabela-numeros thead {
  position: sticky;
  top: 0;
  background: #0f0f0f;
  z-index: 10;
}

.tabela-numeros th {
  padding: 15px;
  text-align: left;
  color: #00ff9d;
  font-weight: 700;
  border-bottom: 2px solid #2a2a2a;
  font-size: 1.1rem;
}

.tabela-numeros td {
  padding: 12px 15px;
  border-bottom: 1px solid #2a2a2a;
  color: #e0e0e0;
}

.tabela-numeros .numero-col {
  font-weight: 700;
  font-size: 1.1rem;
  width: 120px;
}

.tabela-numeros .comprador-col {
  color: #b0b0b0;
}

.numero-vendido-lista {
  background: rgba(42, 42, 42, 0.3);
}

.numero-vendido-lista .numero-col {
  color: #666;
}

.numero-vendido-lista .comprador-col {
  color: #808080;
}

.numero-disponivel-lista {
  background: rgba(26, 77, 61, 0.2);
}

.numero-disponivel-lista .numero-col {
  color: #00ff9d;
  text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.numero-disponivel-lista .comprador-col {
  color: #00d4aa;
  font-style: italic;
}

.numero-disponivel-lista:hover {
  background: rgba(26, 77, 61, 0.4);
}

/* Modal Meus Números */
.modal-meus-numeros {
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
}

.consulta-cpf {
  margin-bottom: 30px;
}

.consulta-cpf .input-group {
  margin-bottom: 20px;
}

.consulta-cpf .cta-button {
  width: 100%;
}

.resultado-consulta {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #2a2a2a;
}

.resultado-consulta h3 {
  color: #00ff9d;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.info-compras {
  background: #0f0f0f;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
}

.info-compras p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin: 0;
}

.info-compras strong {
  color: #00ff9d;
}

.info-compras span {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(0, 255, 157, 0.2);
}

.meus-numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 10px;
  max-height: 400px;
  overflow-y: auto;
  padding: 20px;
  background: #0f0f0f;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
}

.meus-numeros-grid::-webkit-scrollbar {
  width: 8px;
}

.meus-numeros-grid::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-radius: 5px;
}

.meus-numeros-grid::-webkit-scrollbar-thumb {
  background: #00ff9d;
  border-radius: 5px;
}

.meu-numero-item {
  background: linear-gradient(135deg, #00ff9d 0%, #00d4aa 100%);
  color: #0a0a0a;
  padding: 15px 10px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 3px 15px rgba(0, 255, 157, 0.3);
  transition: transform 0.3s;
}

.meu-numero-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 255, 157, 0.5);
}

/* Responsividade */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .premios-container {
    grid-template-columns: 1fr;
  }

  .comprar-footer {
    flex-direction: column;
    text-align: center;
  }

  .numeros-grid {
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float a {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .modal-meus-numeros {
    margin: 10% 10px;
    padding: 25px 15px;
  }

  .info-compras {
    flex-direction: column;
    text-align: center;
  }

  .meus-numeros-grid {
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 8px;
    padding: 15px;
  }

  .meu-numero-item {
    padding: 12px 8px;
    font-size: 1rem;
  }

  .ver-lista-container {
    padding: 15px;
  }

  .ver-lista-link {
    font-size: 1rem;
    padding: 8px 15px;
    display: block;
    margin: 10px 0;
  }

  .tabela-numeros th,
  .tabela-numeros td {
    padding: 10px 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .ver-lista-link {
    font-size: 0.95rem;
  }
}
