/* ========================================
 ÍNDICE DO PROJETO
 ========================================
 1. Variáveis Globais (:root)
 2. Estilos Base (body, header, th, td, table)
 3. Layout Principal (sidebar, content, menu-toggle)
 4. Componentes Gerais (botões, containers)
 5. Estilos por Aba/Seção
    - 5.1. Tabela Movimentação & Cores (Estilos Comuns)
    - 5.2. Tabela Movimentação (Específico)
    - 5.3. Tabela das Cores (Específico)
    - 5.4. Tabela Frequência
    - 5.5. Último Resultado
    - 5.6. Montar/Testar
    - 5.7. Loterias Alternativa
    - 5.8. Grupo VIP
 6. Classes Utilitárias (loading, destaques, etc)
 ========================================
*/

/* ========================================
   1. VARIÁVEIS GLOBAIS
   ======================================== */
:root {
  --sidebar-width: 220px;
  --cor-principal: #6c2bb8;
  --cor-hover: #532091;
}

/* ========================================
   2. ESTILOS BASE
   ======================================== */

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

header {
  background: var(--cor-principal);
  color: #fff;
  padding: 1rem;
  text-align: center;
  position: relative; /* Para posicionar o botão dentro */
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 1rem;
  background: #fff;
}
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
th {
  background-color: #4caf50;
  color: #fff;
}
.tab-content {
  display: none;
  padding: 1rem;
}
.tab-content.active {
  display: block;
}
.botoes-container {
  margin: 1rem 0;
  display: flex;
  gap: 10px;
}
.botoes-container button {
  padding: 0.6rem 1rem;
  border: none;
  background: var(--cor-principal);
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}
.botoes-container button:hover {
  background: var(--cor-hover);
}

/* ==== LAYOUT PRINCIPAL (NOVA LÓGICA) ==== */
.layout {
  display: flex;
}

.sidebar {
  width: var(--sidebar-width);
  background: var(--cor-principal);
  color: #fff;
  padding: 20px 0;
  transition: margin-left 0.3s ease; /* Animação suave */
  flex-shrink: 0; /* Impede que o sidebar encolha */
}

.content {
  flex-grow: 1; /* Ocupa o espaço restante */
  padding: 20px;
  background: #f7f7f7;
  transition: margin-left 0.3s ease;
  position: relative; /* Contexto para o botão */
}

/* ESTADO FECHADO */
.layout.sidebar-fechada .sidebar {
  margin-left: calc(
    -1 * var(--sidebar-width)
  ); /* Esconde o menu para a esquerda */
}

/* Botão do menu */
.menu-toggle {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 45px;
  height: 45px;
  background-color: #6a1b9a; /* roxo para combinar */
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

/* Hover */
.menu-toggle:hover {
  background-color: #8e24aa;
  transform: scale(1.05);
}

/* As 3 barrinhas */
.menu-toggle span {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle span::before {
  top: -7px;
}
.menu-toggle span::after {
  top: 7px;
}

/* Estado aberto → vira X */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Animação de pulso */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.menu-toggle {
  animation: pulse 2s infinite;
}

/* ==== ESTILOS DO MENU (Sidebar) ==== */
.sidebar .tab {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  transition: background 0.3s;
  border-left: 5px solid transparent;
}
.sidebar .tab:hover {
  background: var(--cor-hover);
}
.sidebar .tab.active {
  background: #fff;
  color: var(--cor-principal);
  border-left: 5px solid #4caf50;
}

/* Demais estilos do seu projeto (mantidos) */
.dezena-sorteada {
  background-color: #7209b7;
  color: white;
  border-radius: 10%;
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
}
#movimentacao-table th,
#movimentacao-table td {
  padding: 7px;
  text-align: center;
}
#movimentacao-table th:first-child {
  font-weight: bold;
  color: #4caf50;
}

#movimentacao-table td:first-child {
  font-weight: bold;
}
.dezena-nao-sorteada {
  color: #bbb;
}
.loading {
  font-weight: bold;
  color: var(--cor-principal);
}
.linha-sequência td:first-child {
  font-weight: bold;
  color: #1565c0;
}
.linha-sequência td {
  background-color: #e3f2fd;
}
.linha-atrasos td:first-child {
  font-weight: bold;
  color: #c62828;
}
.linha-atrasos td {
  background-color: #ffebee;
}
.linha-frequência td:first-child {
  font-weight: bold;
  color: #2e7d32;
}
.linha-frequência td {
  background-color: #e8f5e9;
}
.linha-temp td:first-child {
  font-weight: bold;
  color: #424242;
}
.linha-temp td {
  background-color: #f5f5f5;
}

/* ========================================
   5.5. ÚLTIMO RESULTADO (CSS Corrigido)
   ======================================== */

#ultimo-concurso {
  background: #fff;
  border-radius: 12px;
  padding: 20px; /* Aumentar o padding */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 12px;
  text-align: center; /* Centraliza tudo dentro do card */
  position: relative; /* Para a fita dourada */
  overflow: hidden; /* Para a fita dourada */
}

/* === NOVO CSS PARA DATA E CONCURSO === */

/* Estiliza os parágrafos <p> de "Concurso" e "Data" */
#ultimo-concurso > p {
  font-size: 1.2em; /* Tamanho da fonte maior */
  color: #333;
  margin: 5px 0; /* Espaçamento menor entre eles */
}

/* Deixa o "Concurso:" e "Data:" mais suaves */
#ultimo-concurso > p > strong {
  color: #777;
  font-weight: 500; /* Um pouco mais leve que 'bold' */
}

/* Destaca o NÚMERO do concurso */
#uc-concurso {
  font-weight: bold;
  font-size: 1.1em; /* Levemente maior */
  color: var(--cor-principal); /* Sua cor roxa! */
}

/* Destaca a DATA */
#uc-data {
  font-weight: bold;
  color: #555;
}

.dezenas-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.valores {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: center; /* Centraliza os cards de valores */
}
.valor-card {
  flex: 1;
  background: #f5f5f5;
  color: #000000;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}
#uc-dezenas {
  display: grid;
  grid-template-columns: repeat(5, 50px);
  gap: 8px;
  margin: 25px auto;
  justify-content: center;
}
.dezena {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid #ccc;
  background: #f9f9f9;
  color: #555;
}
.dezena.sorteada {
  background: #7209b7;
  color: #fff;
  border-color: #7209b7;
}

.linha-destacada {
  background-color: #fff9c4 !important;
}
td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}
.numero-sorteado {
  background-color: #6200ff;
  color: white;
  font-weight: bold;
}
#tabela-movimentacao td:not(:first-child):not(:nth-child(2)) {
  width: 30px;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
}
#tabela-movimentacao td:first-child,
#tabela-movimentacao td:nth-child(2) {
  text-align: center;
}
.numero-nao-sorteado {
  background-color: #f0f0f0;
  color: #333;
  text-align: center;
}
.container {
  flex-direction: column;
  gap: 30px;
  padding: 30px;
}
.painel {
  display: grid;
  grid-template-columns: repeat(5, 40px);
  gap: 5px;
  margin-top: 15px;
}
.num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #666;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}
.num.selecionado {
  background: #7209b7;
  color: #fff;
}
.resultados {
  margin-top: 20px;
  flex: 1;
  background-color: #f9f9f9;
  background: #fff;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  overflow-y: auto;
}
.resultados::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}
.botoes {
  margin-top: 20px;
}
button {
  padding: 10px 20px;
  margin-right: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
button#conferir {
  background: #2e7d32;
  color: #fff;
}
button#limpar {
  background: #c62828;
  color: #fff;
}
.resultado-item {
  padding: 5px;
  margin: 2px 0;
  border-radius: 5px;
  font-weight: bold;
}
.linha-resultado {
  padding: 8px;
  margin-bottom: 5px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.acertos-11 {
  background-color: #bbdefb;
  color: #1d2d50;
  border-left: 5px solid #2196f3;
}
.acertos-12 {
  background-color: #a5d6a7;
  color: #1b5e20;
  border-left: 5px solid #4caf50;
}
.acertos-13 {
  background-color: #ffcc80;
  color: #4e342e;
  border-left: 5px solid #ff9800;
}
.acertos-14 {
  background-color: #ffb74d;
  color: #4e342e;
  font-weight: bold;
  border-left: 5px solid #f57c00;
}
.acertos-15 {
  background-color: #ff4d4d;
  color: #4e342e;
  font-weight: bold;
  border-left: 5px solid #f50000;
}
#quantidade-concursos {
  width: 80px;
  padding: 8px 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border: 2px solid #6a1b9a;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  color: #333;
}
#quantidade-concursos:hover {
  border-color: #9c27b0;
  background-color: #fff;
}
#quantidade-concursos:focus {
  border-color: #4caf50;
  box-shadow: 0 0 6px rgba(76, 175, 80, 0.6);
}

.loterias-alternativa {
  margin: 20px;
}

.loterias-alternativa h2 {
  color: #5a2ca0; /* Roxo do layout */
  margin-bottom: 20px;
  text-align: center;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* ===== ESTILO BASE DOS CARDS ===== */
.card {
  position: relative;
  border-radius: 18px;
  padding: 20px;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* Efeito hover */
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ===== FITA DOURADA ===== */
.card::before {
  content: "★ Sorte!";
  position: absolute;
  top: 20px;
  right: -45px;
  background: linear-gradient(45deg, #ffd700, #ffb700);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 55px;
  text-align: center;
  transform: rotate(45deg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

/* ===== CORES POR LOTERIA ===== */

/* Lotofácil → Roxo/rosa */
.card-loto {
  background: linear-gradient(135deg, #8e2de2, #ff0080);
}

/* Mega-Sena → Verde/azul */
.card-mega {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

/* Quina → Azul escuro/roxo */
.card-quina {
  background: linear-gradient(135deg, #2b5876, #4e4376);
}

/* Dia de Sorte → Verde limão */
.card-sorte {
  background: linear-gradient(135deg, #98ad3b, #99cc32);
}

/* Lotomania → Laranja/vermelho */
.card-lotomania {
  background: linear-gradient(135deg, #f7971e, #ff512f);
}

/* Timemania → Verde/amarelo */
.card-timemania {
  background: linear-gradient(135deg, #d9d919, #ffff00);
  color: #333; /* contraste melhor no amarelo */
}

/* Dupla Sena → Vermelho/rosa */
.card-dupla {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

/* +Milionária → Azul escuro */
.card-milionario {
  background: linear-gradient(135deg, #3e41ff, #001381);
}

/* Efeito hover em todos */
.card-loto:hover,
.card-mega:hover,
.card-quina:hover,
.card-sorte:hover,
.card-lotomania:hover,
.card-timemania:hover,
.card-dupla:hover,
.card-milionario:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}
/* Título da loteria */
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Texto */
.card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* BOTOES DOS CARDS */

.btn-loto {
  display: inline-block;
  text-decoration: none;
  background: #5a2ca0;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-mega {
  display: inline-block;
  text-decoration: none;
  background: #00ff00;
  color: rgb(0, 0, 0);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-quina {
  display: inline-block;
  text-decoration: none;
  background: #1900ff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-sorte {
  display: inline-block;
  text-decoration: none;
  background: #d9ff00;
  color: rgb(0, 0, 0);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-mania {
  display: inline-block;
  text-decoration: none;
  background: #ffae00;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-time {
  display: inline-block;
  text-decoration: none;
  background: #fbff00;
  color: rgb(0, 0, 0);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-dupla {
  display: inline-block;
  text-decoration: none;
  background: #ff0000;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-milionaria {
  display: inline-block;
  text-decoration: none;
  background: #210099;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  font-size: 32px;
  text-decoration: none;
  transition: transform 0.3s;
}

.social-links a.instagram {
  color: #e1306c; /* Cor do Instagram */
}

.social-links a.whatsapp {
  color: #25d366; /* Cor do WhatsApp */
}

.social-links a:hover {
  transform: scale(1.2);
}

#cores-table {
  border-collapse: collapse;
  width: 100%;
  font-family: Arial, sans-serif;
  text-align: center;
  margin-top: 10px;
}

#cores-table th {
  background: #4caf50;
  color: #fff;
}

#cores-table th,
#cores-table td {
  padding: 7px;
  text-align: center;
}

/* SUBSTITUA PELOS DOIS BLOCOS ABAIXO: */

/* 1. Estilo aplicado a TODAS as células da tabela de cores (incluindo rodapé) */
#cores-table td {
  border: 1px solid #ddd;
  padding: 7px;
  font-weight: bold;
}

/* 2. Aplica o tamanho fixo APENAS às linhas de dados (e NÃO ao rodapé) */
#cores-table
  tbody
  tr:not(.linha-sequência):not(.linha-atrasos):not(.linha-frequência):not(
    .linha-temp
  )
  td {
  width: 25px;
  height: 25px;
}

.botoes-cores {
  margin-bottom: 10px;
}

.botoes-cores button {
  padding: 0.6rem 1rem;
  border: none;
  background: var(--cor-principal);
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}
.botoes-cores button:hover {
  background: #532091;
}

/* Cores das dezenas */
.cor-vermelho {
  background-color: #ff1900;
  color: white;
}
.cor-amarelo {
  background-color: #ffff00;
  color: black;
}
.cor-verde {
  background-color: #1eff01;
  color: rgb(0, 0, 0);
}
.cor-marrom {
  background-color: #6c3f1b;
  color: white;
}
.cor-azul {
  background-color: #0015ff;
  color: white;
}
.cor-rosa {
  background-color: #ff0180;
  color: white;
}
.cor-preto {
  background-color: #000000;
  color: white;
}
.cor-cinza {
  background-color: #7f8c8d;
  color: white;
}
.cor-laranja {
  background-color: #ff7700;
  color: white;
}
.cor-branco {
  background-color: #89e7ff;
  color: black;
}

.cor-sorteada {
  border-radius: 10%;
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.cor-nao-sorteada {
  color: #bbb;
}

.linha-destacada {
  background-color: rgba(255, 255, 0, 0.2);
}

/* Em vez de apenas 'color: #bbb;' */
.dezena-nao-sorteada,
.cor-nao-sorteada {
  background-color: #f0f0f0; /* Um cinza bem claro */
  color: #a0a0a0; /* Um cinza um pouco mais escuro para o texto */
  border-radius: 10%; /* Para combinar com o estilo dos sorteados */
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px; /* Padronizando o tamanho que discutimos */
}

/* 1. Estilo da coluna destacada (aplica-se ao TH e aos TDs) */
.coluna-destacada {
  background-color: #fff9c4 !important; /* Um amarelo-claro para destaque */
  /* O !important ajuda a sobrescrever outros estilos de fundo */
}

/* 2. Feedback visual para os cabeçalhos das tabelas (exceto o "Concurso") */
#movimentacao-table thead th:not(:first-child),
#cores-table thead th:not(:first-child) {
  cursor: pointer; /* Muda o cursor para "mãozinha" */
  transition: background-color 0.2s ease;
}

/* Efeito hover para os cabeçalhos */
#movimentacao-table thead th:not(:first-child):hover,
#cores-table thead th:not(:first-child):hover {
  /* Usa a variável --cor-hover que você já definiu no seu CSS! */
  background-color: var(--cor-hover);
}

/* Adicione isso ao final do seu arquivo .css */

/* Estilos para o conteúdo da aba VIP */
#grupo-vip {
  text-align: center;
  padding: 20px;
}

#grupo-vip h2 {
  color: var(--cor-principal); /* Usa sua cor principal roxa */
  font-size: 2em;
  margin-bottom: 20px;
}

#grupo-vip p {
  font-size: 1.1em;
  color: #333;
  max-width: 600px;
  margin: 0 auto 30px auto; /* Centraliza */
}

/* Estilo para o botão de chamada para ação (CTA) */
.btn-vip {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  color: #2c2c2c; /* Texto escuro para contraste */

  /* Gradiente Dourado para o botão */
  background: linear-gradient(145deg, #ffd700, #ffb700);

  border: none;
  border-radius: 50px; /* Bordas arredondadas */
  text-decoration: none;
  cursor: pointer;

  /* Sombra para dar profundidade */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-vip:hover {
  transform: scale(1.05); /* Efeito de zoom */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* --- ESTILOS PARA OS MÚLTIPLOS GRIDS DE RESULTADOS --- */

/* O container que segura todos os cards */
.multi-grid-container {
  display: flex;
  flex-wrap: wrap; /* Permite que os cards quebrem a linha */
  justify-content: center; /* Centraliza os cards */
  gap: 20px; /* Espaço entre os cards */
  padding: 10px;
}

/* 1. O card completo (fundo branco, sombra, etc.) */
.grid-card {
  background-color: #ffffff; /* Fundo branco */
  border-radius: 6px; /* Cantos arredondados */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Sombra suave */
  border: 1px solid #e0e0e0; /* Borda cinza clara */
  overflow: hidden; /* Importante para o header se ajustar */
  width: 350px;
}

/* 2. O NOVO HEADER AZUL (como na foto) */
.grid-card-header {
  background-color: #004a9b; /* Azul sólido da foto */
  color: #ffffff;
  display: flex;
  justify-content: center; /* Centralizado */
  align-items: center;
  padding: 10px 15px;
  border-bottom: none; /* Remove a linha que tinha antes */
}

/* 3. O texto do header */
.grid-card-header h3 {
  margin: 0;
  font-size: 1.05em; /* Tamanho do texto */
  font-weight: bold;
  color: #ffffff; /* Garante que o H3 seja branco */
}

.grid-card-header p {
  color: #a0a0b9; /* Cor da data */
  margin: 0;
  font-size: 0.9em;
}

/* O corpo 5x5 do grid */
.grid-card-body {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px; /* Espaço entre os números */
  padding: 15px; /* Espaço interno no corpo do card */
}

/* 4. Números NÃO sorteados (cinza claro) */
.grid-card-numero {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 4px;
  background-color: #f0f0f0; /* Fundo cinza claro */
  color: #6c757d; /* Texto cinza escuro */
}

/* 5. Números SORTEADOS (verde) */
.grid-card-numero.sorteado {
  background-color: #38b000; /* Verde (como na foto) */
  color: #ffffff; /* Texto branco */
}
