/* ========== VARIÁVEIS CSS ========== */
:root {
    --cor-primaria: #0d1a2b;
    --cor-secundaria: #D1B382;
    --cor-destaque: #930989;
    --cor-sucesso: #238636;
    --cor-info: #58a6ff;
    --cor-alerta: #f85149;
    --cor-fundo: #0d1117;
    --cor-card: #161b22;
    --cor-texto: #c9d1d9;
    --cor-texto-secundario: #8b949e;
    --azul-combinatica: #58a6ff;
    --verde-whatsapp: #25D366;
    --roxo-lotofacil: #7a0e70;
    --verde-gerador: #2e8b57;
    --verde-gerador-claro: #7CFC98;
}

/* ========== RESET E ESTILOS GERAIS ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cor-secundaria);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ========== MENU DE NAVEGAÇÃO ========== */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 26, 43, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 2px solid var(--cor-secundaria);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.nav-logo h1 {
    font-size: 24px;
    font-weight: 900;
    margin: 0;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-tabs {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Botões de aba normais */
.tab-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--cor-secundaria);
    color: var(--cor-secundaria);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
    outline: none;
}

.tab-btn:hover {
    background: var(--cor-secundaria);
    color: var(--cor-primaria);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 179, 130, 0.3);
}

.tab-btn.active {
    background: var(--cor-secundaria);
    color: var(--cor-primaria);
    box-shadow: 0 4px 12px rgba(209, 179, 130, 0.4);
}

/* Botão Gerador Avançado */
.nav-gerador-link {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--verde-gerador) 0%, var(--verde-gerador-claro) 100%);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
    margin-left: 5px;
    font-size: 15px;
}

.nav-gerador-link:hover {
    background: linear-gradient(135deg, var(--verde-gerador-claro) 0%, var(--verde-gerador) 100%);
    color: #1c1c1c;
    border-color: var(--verde-gerador);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

.nav-gerador-link svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.nav-gerador-link:hover svg {
    transform: translateX(3px);
}

/* ========== CONTEÚDO PRINCIPAL ========== */
.main-content {
    margin-top: 100px;
    padding: 30px 40px;
    min-height: calc(100vh - 100px);
}

/* ========== SEÇÃO INÍCIO ========== */
.home-section {
    display: block;
    animation: fadeIn 0.8s ease;
}

.home-section.hidden {
    display: none;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.logo-container {
    margin: 20px 0 40px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    text-align: left;
    margin-top: 20px;
}

.logo-text h1 {
    font-size: 52px;
    font-weight: 900;
    margin: 0;
    color: var(--cor-primaria);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.logo-text p {
    margin: 10px 0 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--cor-primaria);
    opacity: 0.9;
}

.message {
    text-align: left;
    max-width: 800px;
    margin: 40px 0 50px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(13, 26, 43, 0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.message h1 { 
    color: var(--cor-primaria); 
    margin-top: 0; 
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.message h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--cor-destaque);
    border-radius: 2px;
}

.message p { 
    font-size: 18px; 
    color: var(--cor-primaria); 
    line-height: 1.7; 
    margin-bottom: 20px; 
    opacity: 0.9;
}

.message strong {
    color: var(--cor-destaque);
    font-weight: 700;
}

/* ========== CONTAINER DAS BOLAS ========== */
.balls-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 250px;
    width: 100%;
    gap: 20px;
    padding: 30px 0;
    background: transparent;
    margin: 50px 0;
    flex-wrap: wrap;
}

.ball {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: bounce 1.5s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 3px solid white;
    user-select: none;
}

.ball:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-120px); 
    }
}

/* ========== SEÇÃO RESULTADOS ========== */
.results-section {
    display: none;
}

.results-section.active {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.results-container {
    background: var(--cor-fundo);
    color: var(--cor-texto);
    padding: 30px;
    border-radius: 16px;
    margin-top: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    border: 1px solid #30363d;
}

.results-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--cor-destaque);
}

.results-header h1 {
    color: var(--azul-combinatica);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    color: var(--cor-texto-secundario);
    font-size: 1rem;
    font-weight: 400;
}

/* ========== CONTAINER DE BUSCA ========== */
.busca-container {
    background: var(--cor-card);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #30363d;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.busca-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.busca-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    background: var(--cor-fundo);
    border: 2px solid #30363d;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    outline: none;
}

.busca-input:focus {
    border-color: var(--azul-combinatica);
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.2);
}

/* ========== CONTAINER DE AÇÕES ========== */
.acoes-container {
    background: var(--cor-card);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #30363d;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.acoes-botoes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========== BOTÕES ========== */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    outline: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-buscar {
    background: linear-gradient(135deg, var(--azul-combinatica), #1f6feb);
    color: white;
}

.btn-buscar:hover {
    background: linear-gradient(135deg, #79b8ff, var(--azul-combinatica));
}

.btn-aleatorio {
    background: linear-gradient(135deg, #28a745, #2ea043);
    color: white;
}

.btn-aleatorio:hover {
    background: linear-gradient(135deg, #34d058, #28a745);
}

.btn-limpar {
    background: linear-gradient(135deg, #6e7681, #8b949e);
    color: white;
}

.btn-limpar:hover {
    background: linear-gradient(135deg, #8b949e, #6e7681);
}

.btn-limpar-tudo {
    background: linear-gradient(135deg, #f85149, #da3633);
    color: white;
}

.btn-limpar-tudo:hover {
    background: linear-gradient(135deg, #da3633, #f85149);
}

.btn-recarregar {
    background: linear-gradient(135deg, #1f6feb, #58a6ff);
    color: white;
}

.btn-recarregar:hover {
    background: linear-gradient(135deg, #58a6ff, #1f6feb);
}

.btn-carregar {
    display: block;
    margin: 40px auto;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--cor-sucesso), #2ea043);
    color: white;
    font-size: 1.1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(35, 134, 54, 0.3);
    outline: none;
}

.btn-carregar:hover {
    background: linear-gradient(135deg, #2ea043, var(--cor-sucesso));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(35, 134, 54, 0.4);
}

.btn-carregar:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-carregar:disabled:hover {
    background: linear-gradient(135deg, var(--cor-sucesso), #2ea043);
    transform: none;
}

/* ========== LOADING ========== */
.loading {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
    background: rgba(31, 111, 235, 0.1);
    color: var(--azul-combinatica);
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(88, 166, 255, 0.2);
    border-top: 4px solid var(--azul-combinatica);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ========== MENSAGENS ========== */
.error {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    background: rgba(248, 81, 73, 0.1);
    color: var(--cor-alerta);
    font-size: 1.1rem;
    border: 1px solid rgba(248, 81, 73, 0.3);
}

/* ========== CONCURSOS GRID ========== */
.concursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.concurso-card {
    background: var(--cor-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #30363d;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.concurso-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    border-color: var(--azul-combinatica);
}

.concurso-header {
    background: linear-gradient(135deg, var(--cor-destaque), var(--roxo-lotofacil));
    color: white;
    padding: 15px;
    text-align: center;
    border-bottom: 3px solid var(--cor-secundaria);
}

.concurso-numero {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.concurso-data {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ========== NÚMEROS SORTEADOS ========== */
.numeros-sorteados {
    text-align: center;
    margin: 20px 0 15px 0;
    padding: 0 15px;
}

.numeros-sorteados div {
    margin-bottom: 8px;
}

.numero-sorteado {
    display: inline-block;
    width: 40px;
    height: 36px;
    line-height: 36px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: var(--cor-destaque);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 3px 5px 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* ========== VOLANTE ========== */
.volante {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding: 20px;
    background: rgba(13, 17, 23, 0.8);
    margin: 0 15px 15px 15px;
    border-radius: 12px;
}

.numero {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #21262d;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #30363d;
    transition: all 0.3s ease;
    color: var(--cor-texto);
}

.numero.sorteado {
    background: linear-gradient(135deg, var(--cor-destaque), var(--roxo-lotofacil));
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(147, 9, 137, 0.4);
    border: 2px solid var(--cor-secundaria);
    transform: scale(1.1);
}

/* ========== PREMIAÇÃO ========== */
.premiacao {
    padding: 20px;
    background: rgba(13, 17, 23, 0.6);
    margin: 0 15px 15px 15px;
    border-radius: 12px;
}

.acerto-item {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    align-items: center;
    margin: 8px 0;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.acerto-item:last-child {
    border-bottom: none;
}

.acerto-item span:nth-child(1) {
    text-align: left;
    font-weight: 500;
}

.acerto-item span:nth-child(2) {
    text-align: center;
    font-weight: 600;
    color: var(--azul-combinatica);
}

.acerto-item span:nth-child(3) {
    text-align: right;
    font-weight: 600;
    color: var(--cor-secundaria);
}

.acumulado-center,
.acumulado-right {
    color: #ff6b6b !important;
    font-weight: 700 !important;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
    }
    50% { 
        opacity: 0.7; 
    }
}

/* ========== CONCURSO BUSCADO ========== */
.concurso-buscado {
    border-left: 6px solid var(--azul-combinatica);
    animation: buscadoPulse 2s ease;
    box-shadow: 0 0 30px rgba(88, 166, 255, 0.3);
}

@keyframes buscadoPulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(88, 166, 255, 0.7); 
    }
    70% { 
        box-shadow: 0 0 0 20px rgba(88, 166, 255, 0); 
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(88, 166, 255, 0); 
    }
}

/* ========== CONTADOR ========== */
.contador-container {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(88, 166, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(88, 166, 255, 0.2);
}

#contador {
    color: var(--azul-combinatica);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========== RODAPÉ ========== */
.results-footer {
    text-align: center;
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 1px solid #30363d;
    color: var(--cor-texto-secundario);
    font-size: 0.9rem;
    line-height: 1.6;
}

.results-footer a {
    color: var(--azul-combinatica);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* ========== BOTÃO WHATSAPP ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--verde-whatsapp), #128C7E);
    color: white;
    border: none;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s ease;
    z-index: 1000;
    text-decoration: none;
    outline: none;
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

/* ========== SCROLLBAR PERSONALIZADA ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cor-primaria);
}

::-webkit-scrollbar-thumb {
    background: var(--cor-secundaria);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c1a46e;
}

/* ========== RESPONSIVIDADE ========== */

/* Tablet e Desktop Médio */
@media (max-width: 992px) {
    .concursos-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .logo-text h1 {
        font-size: 42px;
    }
}

/* Tablet Pequeno e Mobile Grande */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .nav-tabs {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-gerador-link {
        margin-left: 0;
        justify-content: center;
        width: 100%;
        padding: 12px 20px;
        order: 3; /* Coloca o botão gerador depois das abas */
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .main-content {
        padding: 20px;
        margin-top: 150px;
    }
    
    .logo-text h1 {
        font-size: 36px;
    }
    
    .logo-text p {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .message {
        padding: 25px;
        margin: 30px 0 40px 0;
    }
    
    .message h1 {
        font-size: 26px;
    }
    
    .message p {
        font-size: 16px;
    }
    
    .concursos-grid {
        grid-template-columns: 1fr;
    }
    
    .busca-form {
        flex-direction: column;
        width: 100%;
    }
    
    .busca-input {
        min-width: 100%;
        width: 100%;
    }
    
    .acoes-botoes {
        flex-direction: column;
    }
    
    .acoes-botoes .btn,
    .busca-form .btn {
        width: 100%;
    }
    
    .balls-container {
        gap: 12px;
        height: 180px;
        padding: 20px 10px;
    }
    
    .ball {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    @keyframes bounce {
        0%, 100% { 
            transform: translateY(0); 
        }
        50% { 
            transform: translateY(-80px); 
        }
    }
    
    .results-container {
        padding: 20px;
    }
    
    .volante {
        gap: 6px;
        padding: 15px;
    }
    
    .numero {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .numero-sorteado {
        width: 36px;
        height: 32px;
        line-height: 32px;
        font-size: 1rem;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .results-header h1 {
        font-size: 2rem;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 28px;
    }
    
    .logo-text p {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .message {
        padding: 20px;
    }
    
    .message h1 {
        font-size: 22px;
    }
    
    .message p {
        font-size: 15px;
    }
    
    .balls-container {
        height: 150px;
    }
    
    .ball {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    @keyframes bounce {
        0%, 100% { 
            transform: translateY(0); 
        }
        50% { 
            transform: translateY(-60px); 
        }
    }
    
    .concurso-header {
        padding: 12px;
    }
    
    .concurso-numero {
        font-size: 1.3rem;
    }
    
    .acerto-item {
        font-size: 0.8rem;
        grid-template-columns: 1.5fr 1fr 1.2fr;
    }
    
    .results-container {
        padding: 15px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn-carregar {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .nav-gerador-link {
        font-size: 14px;
        padding: 10px 16px;
    }
}

/* Mobile Muito Pequeno */
@media (max-width: 360px) {
    .logo-text h1 {
        font-size: 24px;
    }
    
    .logo-text p {
        font-size: 12px;
    }
    
    .message h1 {
        font-size: 20px;
    }
    
    .message p {
        font-size: 14px;
    }
    
    .ball {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .numero-sorteado {
        width: 32px;
        height: 28px;
        line-height: 28px;
        font-size: 0.9rem;
    }
    
    .numero {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .volante {
        gap: 4px;
        padding: 10px;
    }
    
    .nav-gerador-link {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* Impressão */
@media print {
    .nav-container,
    .whatsapp-btn,
    .btn-carregar,
    .busca-container,
    .acoes-container {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .results-container {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .concurso-card {
        break-inside: avoid;
        border: 1px solid #000;
    }
    
    .numero-sorteado {
        background: white;
        color: black;
        border: 1px solid #000;
    }
}
