/* =========================================
   PRELOADER SÊNIOR
   ========================================= */


/* Container para centralizar */
.preloader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Animação da Logo (Pulsar) */
.logo-pulse {
    width: 120px; /* Ajuste o tamanho da sua logo */
    height: auto;
    margin-bottom: 20px;
    animation: pulseLogo 2s infinite ease-in-out;
}

/* Spinner Moderno (Anel) */
.spinner-ring {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 199, 116, 0.2); /* Verde transparente */
    border-top-color: #00C774; /* Verde Neon Principal */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Quando o JS disser que carregou, aplicamos esta classe */
#site-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Permite clicar no site mesmo se a animação travar */
}

/* --- Keyframes (Animações) --- */
@keyframes pulseLogo {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/* =========================================
   PRELOADER SÊNIOR
   ========================================= */












/* css afliado compartilha Container Geral */
/* IMAGEM NO CHAT */
.chat-input-field {
    width: 100%;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    outline: none;
    box-sizing: border-box; /* Importante para não quebrar layout */
}
.chat-input-field:focus { border-color: #00C774; }




.image-msg img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 5px;
    border: 1px solid #444;
    cursor: pointer;
}

/* CARD REDES SOCIAIS */
.social-card-container {
    display: flex;
    gap: 15px;
    padding: 10px;
    background: #222;
    border-radius: 8px;
    justify-content: center;
    margin-top: 5px;
}
.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.social-icon-btn:hover { transform: scale(1.1); }

/* BARRA DE INPUT COM ANEXO */
.chat-footer {
    display: flex; /* Agora visível, só escondido pelo JS inicialmente se quiser */
    align-items: center;
    gap: 10px;
    background: #222;
    padding: 10px;
    border-top: 1px solid #333;
}
.btn-attach {
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}
.btn-attach:hover { color: #fff; }


#preview-container {
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#support-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
}

#support-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #00C774; /* Sua cor verde */
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 199, 116, 0.4);
    transition: transform 0.3s;
}

#support-toggle:hover { transform: scale(1.1); }

/* JANELA DO CHAT */
#chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.chat-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

/* HEADER */
.chat-header {
    background: #222;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.agent-profile { display: flex; align-items: center; gap: 10px; }
.avatar-box { position: relative; width: 40px; height: 40px; }
.avatar-box img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.status-dot { width: 10px; height: 10px; background: #00C774; border-radius: 50%; position: absolute; bottom: 0; right: 0; border: 2px solid #222; }
.agent-info h4 { margin: 0; color: #fff; font-size: 14px; }
.agent-info span { font-size: 11px; color: #aaa; }
.close-chat { background: none; border: none; color: #aaa; cursor: pointer; }

/* BODY (MENSAGENS) */
.chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #121212;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* BALÕES DE MENSAGEM */
.msg { max-width: 80%; padding: 10px 15px; border-radius: 10px; font-size: 13px; line-height: 1.4; position: relative; }
.msg.bot, .msg.agent { background: #2a2a2a; color: #fff; align-self: flex-start; border-bottom-left-radius: 2px; }
.msg.user { background: #00C774; color: #000; align-self: flex-end; border-bottom-right-radius: 2px; font-weight: 500; }

/* BOTÕES DE OPÇÃO (BOT) */
.bot-options { display: flex; flex-direction: column; gap: 5px; margin-top: 5px; }
.bot-btn {
    background: transparent;
    border: 1px solid #00C774;
    color: #00C774;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    text-align: left;
    transition: 0.2s;
    font-size: 12px;
}
.bot-btn:hover { background: #00C774; color: #000; }

/* CARROSSEL DE AGENTES */
.agent-carousel { display: flex; gap: 10px; overflow-x: auto; padding: 5px 0; }
.agent-card {
    min-width: 100px;
    background: #222;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #333;
}
.agent-card:hover { border-color: #00C774; }
.agent-card img { width: 40px; height: 40px; border-radius: 50%; margin-bottom: 5px; }
.agent-card .name { font-size: 11px; color: #fff; display: block; }
.agent-card .status { font-size: 9px; color: #00C774; }

/* FOOTER (INPUT) */
.chat-footer {
    padding: 10px;
    background: #222;
    display: flex;
    gap: 10px;
    border-top: 1px solid #333;
}
#user-input {
    flex: 1;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 20px;
    padding: 10px 15px;
    resize: none;
    outline: none;
}
#send-btn {
    background: #00C774;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
}
/* WIDGET FLUTUANTE */
















/* Garante que o container seja a referência de posição */
.password-container {
    position: relative; 
}

/* Ajuste do Input para o texto não bater no olho */
.password-container input {
    padding-right: 45px !important; /* Espaço extra na direita */
}

/* Estilo do Ícone do Olho (Botão) */
.toggle-pass {
    position: absolute;
    right: 15px;      /* Distância da direita */
    top: 50%;         /* Centraliza verticalmente */
    transform: translateY(-50%); /* Ajuste fino de centro */
    cursor: pointer;  /* Mãozinha de clique */
    color: #888;      /* Cor padrão discreta */
   z-index: 9999; /* <--- ADICIONE ISSO. Garante que o ícone fique NO TOPO */
    pointer-events: auto; /*      /* Garante que fique por cima do input */
    font-size: 1.1rem; /* Tamanho confortável */
    transition: all 0.3s ease;
    
    /* Remove estilos que possam vir do ícone da esquerda (fa-lock) */
    left: auto !important; 
}

/* Efeito Hover (Ao passar o mouse) */
.toggle-pass:hover {
    color: #00C774; /* Sua cor principal (Verde) */
    transform: translateY(-50%) scale(1.1); /* Leve aumento */
}






.share-container {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: #1a1a1a; /* Fundo escuro para destacar */
    border-radius: 10px;
    border: 1px solid #333;
}

.share-title {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid de Ícones */
.share-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap; /* Para não quebrar no mobile */
}

/* O Botão Redondo */
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Faz ficar perfeitamente redondo */
    color: #fff !important; /* Ícone sempre branco */
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Efeito Hover */
.icon-circle:hover {
    transform: translateY(-3px); /* Sobe um pouquinho */
    filter: brightness(1.2); /* Fica mais brilhante */
    box-shadow: 0 6px 12px rgba(0,0,0,0.5);
}

/* Ajuste Mobile */
@media (max-width: 480px) {
    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .share-icons {
        gap: 8px;
    }
}
/* css afliado compartilha Container Geral */







/* REGRA DE OURO PARA PWA MOBILE */
.colored-toast .swal2-timer-progress-bar {
    background-color: #00ff88 !important; /* Mesma cor do ícone */
}



@media all and (display-mode: standalone), (display-mode: fullscreen), (display-mode: minimal-ui) {
    #pwa-header-bar, 
    #pwa-modal-overlay,
    #btn-install-top {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    /* Garante que o corpo do site não fique com espaço vazio no topo */
    body {
        padding-top: 0 !important;
    }
    
    /* Garante que o menu fixo volte ao topo */
    nav, .navbar, header {
        top: 0 !important;
    }
}


/* FORÇA O BANNER A FICAR NO TOPO, MESMO DENTRO DA NAVBAR */
#pwa-header-bar {
    position: fixed !important; /* Fixa na tela */
    top: 0 !important;          /* Cola no teto */
    left: 50% !important;       /* Centraliza horizontalmente */
    transform: translateX(-50%) !important; /* Ajuste fino do centro */
    
    width: 100% !important;
    max-width: 450px !important; /* Respeita a largura do seu layout mobile */
    z-index: 10000 !important;   /* Garante que fique acima de tudo */
}


/* Animação do Baú */
@keyframes chestLoop {
  0% { transform: scale(1); }
  10%, 20% { transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); }
  100% { transform: scale(1) rotate(0); }
}
.chest-anim {
    animation: chestLoop 2s infinite; /* Loop Infinito */
    cursor: pointer;
    transition: filter 0.3s;
}
.chest-anim:hover { filter: brightness(1.2); }

/* tabbar */
.hidden-force { display: none !important; }
/* Esconder se o usuário fechou */
.text-shadow {
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
}
/* Garante que o SVG se estique corretamente sem distorcer */
.bg-tabbar-curve {
    background-size: 100% 100%;
}
/* Animação lenta para o brilho de fundo pulsar */
@keyframes pulse-slow {
  0%, 100% { opacity: 0.6; transform: scale(1.1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.animate-pulse-slow {
    animation: pulse-slow 3s infinite ease-in-out;
}

/* Sombra no texto para melhorar leitura */
.text-shadow-sm {
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
/* tabbar */

/* Efeito de Rotação Suave */
.img-rotacionada {
    transform: rotate(90deg); /* Gira 90 graus */
    transition: transform 0.3s ease; /* Animação suave */
}

/* Garante que a imagem volte suavemente */
#menu-jogos img {
    transition: transform 0.3s ease;
}
.input-icon i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
   
    
}
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    
    cursor: pointer;
}



       

        /* Estilos para o topo */
        .top-bar {
            background-color: #1E1E1E;
            width: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            padding: 10px 0;
        }
        .container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-sizing: border-box;
        }
        .logo img {
            width: 100px;
            height: auto;
        }
        .buttons {
            display: flex;
            gap: 10px;
        }
       

    /* Termos boxs */
       
        .sidebar.show {
            left: 0; 
        }
        
        .sidebar-content::-webkit-scrollbar {
            width: 8px; 
        }
        .sidebar-content::-webkit-scrollbar-thumb {
            background-color: #121212; 
            border-radius: 10px; 
        }
        .sidebar-content::-webkit-scrollbar-thumb:hover {
            background-color: #121212;
        }
        .sidebar-content::-webkit-scrollbar-track {
            background: #121212;
        }
       

    /* Botão Esporte */
        
        .botao-esporte .botao-esporte-card {
            width: 100%;
            height: 100%;
        }
        
        .botao-esporte-btn i {
            margin-right: 5px;
        }
        
    /* Estilos para o slider */
        .slider-wrapper {
            max-width: 1000px;
            margin: 40px auto;
        }
        .slider-container {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            flex: 0 0 100%;
            height: 200px;
        }
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 3px;
        }
        .dots {
            text-align: center;
            margin-top: 10px;
        }
        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            cursor: pointer;
        }
        

    /* Estilos para busca */ 
        .busca-container {
            margin: 40px auto 0 auto;
            text-align: center;
            width: 100%;
            max-width: 1000px;
        }
        .busca-form-row {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
        }
        .busca-input-icon {
            position: relative;
            width: 100%;
        }
        
        .busca-input {
            width: 100%;
            padding: 6px 8px 6px 40px;
            border: none;
            border-radius: 3px;
            height: 50px;
            background-color: #1E1E1E;
            color: #fff;
            font-size: 16px;
            margin-bottom: 10px;
 
        }
       
        .busca-container,
        .busca-input-icon,
        .busca-input {
            box-sizing: border-box;
        }
        .busca-resultado {
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }
        .busca-tabela-resultado {
            width: 100%;
            max-width: 1000px;
            margin: 5px auto;
            border-collapse: collapse;
            background-color: #1E1E1E;
            color: #fff;
            border-radius: 3px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            overflow: hidden;
            table-layout: fixed;
        }
        .busca-tabela-resultado td {
            padding: 8px 10px;
            vertical-align: middle;
            overflow: hidden;
        }
        .col-img {
            width: 60px;
            text-align: center;
            padding-left: 5px; 
            padding-right: 5px;
        }
        .col-nome {
            width: 45%;
            font-size: 16px;
        }
        .col-jogadores {
            overflow: visible !important;  
            white-space: normal !important; 
            text-overflow: clip !important; 
            font-size: 12px;
            text-align: center;
        }
        .col-jogar {
            width: 120px;
            text-align: right;
        }
        .busca-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            border-radius: 5px;
            background-color: transparent;
        }
        
        .online-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            margin-right: 6px;
            background-color: #00ff00;
            border-radius: 50%;
            animation: piscar 1s infinite;
            vertical-align: middle;
        }
        @keyframes piscar {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.2; }
        }
        .sem-resultado {
            text-align: center;
            color: #fff;
            padding: 20px;
            font-size: 16px;
            background-color: transparent;
        }

    /* carrossel-ganhadores */
        .ganhos-container {
            display: flex;
            overflow: hidden;
            height: 80px;
            margin-top: 40px;

        }
        .ganhos-fixo {
            flex: 0 0 150px;
            background-color: #121212;
            color: white;
            font-weight: bold;
            text-align: left;
            display: flex;
            flex-direction: row; 
            justify-content: center;
            align-items: center;
            gap: 10px;
            padding: 10px;
            box-sizing: border-box;
            height: 100%;
        }
        .ganhos-fixo i {
            font-size: 30px;
            color: #ffc107;
        }
        .ganhos-fixo span {
            line-height: 1.2;
        }
        .ganhos-rolando {
            flex: 1;
            overflow: hidden;
            position: relative;
            height: 100%;
        }
        .ganhos-slider {
            display: flex;
            align-items: center;
            height: 100%;
        }
        .card {
            display: flex;
            align-items: center;
            background-color: #1E1E1E;
            color: #fff;
            padding: 10px;
            margin-right: 15px;
            border-radius: 8px;
            min-width: 220px;
            height: 100%;
            box-sizing: border-box;
        }
        .card img {
            width: 50px;
            height: 50px;
            margin-right: 10px;
            border-radius: 4px;
            object-fit: contain;
            border-radius: 5px;
            background-color: transparent;
        }
        
        .lista-jogos .jogos-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px; /* espaço entre os cards */
            max-width: 1000px;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
        }
        .lista-jogos .jogar-btn
 {
     
    border: none;
     
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    z-index: 20;
    position: relative;
}
.busca-input-icon i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    
}         
       
        .lista-jogos .jogo-card {
            background-color: #1E1E1E;
            height: 210px;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            background-size: contain;      
            background-repeat: no-repeat;   
            background-position: center;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .lista-jogos .jogo-card:hover {
            transform: scale(1.05);
        }
        .lista-jogos .jogo-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: top center;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            transform: scale(0.94);
            transform-origin: center;
            border-radius: 10px;
            background-color: #1E1E1E;
        }
        .lista-jogos .jogo-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: rgba(0,0,0,0.6);
            opacity: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.3s;
            cursor: default;
            z-index: 10;
        }
        .lista-jogos .jogo-card:hover .jogo-overlay {
            opacity: 1;
        }
        
        .lista-jogos .jogo-info {
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            width: 100%;
            color: white;
        }
        .lista-jogos .jogo-info .nome {
            font-size: 14px;
        }
        .lista-jogos .jogo-info .jogadores {
            margin-top: 4px;
            font-size: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0px;
        }
        .jogadores-text {
            margin-left: 4px;
        }
        

    /* Estilos para o modal */  
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 999;
        }
        .overlay.show {
            display: block;
        }
        .modal {
            display: none; 
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            z-index: 1000;
            width: 90%;
            max-width: 400px;
            border-radius: 5px;
        } 
        .modal-content h2 {
            margin: 0 0 15px 0; 
            font-size: 24px;
            color: <?= $corPrincipal ?>;
            text-align: center; 
        }

      
        
            .modal.show {
            display: block;
        }
       
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .form-row .input-icon {
            flex: 1;
        }
        .input-icon {
            position: relative;
            margin-bottom: 5px;
        }
       
        .input-icon input, .input-icon textarea {
            padding-left: 35px; 
            width: 100%;
            height: 45px; 
            border:none; 
            border-radius: 3px; 
            color: #fff; 
            background-color: #121212;
            outline: none; 
            box-sizing: border-box;
            font-size: 14px;
            font-family: Arial, sans-serif;
        }
        .input-icon input::placeholder, .input-icon textarea::placeholder {
            font-family: Arial, sans-serif;
            font-size: 14px;
        }
        
        input.submit-button.recuperar, 
        input.submit-button.abrir-conta, 
        input.submit-button.contato {
            margin-top: 10px !important;
        }
        .termos {
            font-size: 12px;
            color: #fff; 
            line-height: 1;
            text-align: justify;
        }
        
        .recover-password {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            margin-bottom: 10px;
            margin-top: 5px;
            cursor: pointer;
        }
        .recover-password a, 
        .log-in a, 
        
        .log-in, .create-account{
            width: 100%;
            display: flex;
            justify-content: center;
            margin-top: 15px;
            cursor: pointer;
        }
        #alerta-cadastro, #alerta-login, #alerta-senha, #alerta-contato {
            width: 100%;
            margin-top: -10px;
            display: none;
            font-size: 14px;
        }
        .alertanao {
            width: 100%;
            color: #fff;
            text-align: center;
            display: block;
            cursor: pointer;
            line-height: 24px;
            margin-bottom: 8px;
        }
        

    /* Listagem ao vivos */
        .online-dot-red {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin-right: 6px;
            background-color: #FF3B30;
            border-radius: 50%;
            animation: piscarred 1s infinite;
            vertical-align: middle;
        }
        @keyframes piscarred {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        .aovivo-wrapper {
            width: 400px;
            margin: 0 auto;
        }
        #aovivo-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .aovivo-entry {
            padding: 10px;
            background: #1E1E1E;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            border-radius: 5px;
            color: white;
            display: flex;
            align-items: center;
            box-sizing: border-box;
            width: 100%;
        }
        .aovivo-entry img {
            width: 40px;
            height: 40px;
            border-radius: 5px;
        }
        .aovivo-info {
            margin-left: 8px;
            font-size: 13px;
        }
        

        /* Estilos para o footer */  
        .footer {
            color: #fff;
            width: 100%;
            padding: 40px 0 20px;
        }
        .footer .container-footer {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            flex-wrap: nowrap;
            gap: 5px;
        }
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin: 10px;
        }
        .footer-column:first-child {
            display: flex;
            justify-content: center;   
            align-items: center;       
            min-height: 100%;          
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        .footer-column ul li {
            margin-bottom: 5px;
        }
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
        }
        .footer-column ul li a:hover {
            text-decoration: none;
        }
        .footer img {
            max-width: 150px;
        }
        .footer img.pix-logo {
            max-width: 100px !important;
        }
        .social-icons a {
            margin-right: 10px;
            font-size: 24px;
            color: #fff;
            transition: color 0.3s;
        }
        .footer-line {
            border-top: 1px solid #444;
            margin: 30px auto;
            max-width: 1000px;
        }
        .footer-text {
            max-width: 1000px;
            margin: 0 auto;
            font-size: 12px;
            color: #ccc;
            line-height: 1.6;
            padding: 0 20px;
        }
        
        .footer-centered-img {
            max-width: 1000px;
            margin: 20px auto;
            text-align: center;
        }
        .selo-img {
            max-width: 350px !important; 
            height: auto !important;
        }
        .footer-bottom {
            max-width: 1000px;
            margin: 20px auto 0;
            text-align: center;
            font-size: 13px;
            color: #aaa;
        }
        .footer-bottom span {
            margin: 0 8px;
        }

    @media (max-width: 768px) {
            /* Estilos para barra topo */
            .bonus-cadastro {
                font-size: 3.5vw;
            }

            /* Estilos para o modal */ 
            .modal {
                width: calc(100% - 80px);
                max-width: none; 
            }
            .input-icon input {
                font-size: 16px;
            }

            /* Estilos para o footer */ 
            .footer .container-footer {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 6px;
            }
            .footer-column:nth-child(1) {
                display: none;
            }
            .footer-column {
                flex: 1 1 100%;
                box-sizing: border-box;
                margin: 5px 0;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .footer-column:nth-child(2),
            .footer-column:nth-child(3) {
                flex: 1 1 47%;
                order: 1;
            }
            .footer-column:nth-child(4),
            .footer-column:nth-child(5) {
                flex: 1 1 47%;
                order: 2;
            }
            .footer-column ul {
                padding-left: 0;
                list-style: none;
            }
            .footer-column img,
            .footer-column .pix-logo,
            .footer-column .social-icons {
                margin: 0 auto;
                display: block;
            }
            .footer-column h4 {
                text-align: center;
            }
            .social-icons {
                justify-content: center;
                display: flex;
            }

            /* Estilos para a busca */ 
            .busca-container {
                padding: 0 15px; 
            }
            .busca-input-icon {
                max-width: 100%;
            }
            .col-nome {
                width: 70%;
                font-size: 14px;
            }
            .col-jogadores {
                overflow: visible !important; 
                white-space: normal !important;
                text-overflow: clip !important;
                font-size: 12px;
                width: 40%;
                text-align: center;
            }
            .col-jogar {
                width: 80px;
                text-align: right;
            }

            /* Estilos para a lista de jogos */ 
            .lista-jogos{
                padding: 0px 0px 0px 5px;
            }
            .lista-jogos .jogos-container {
                display: flex;
                overflow-x: auto;
                padding-bottom: 10px;
                gap: 12px;
                width: 100%;
                flex-wrap: nowrap;
                -ms-overflow-style: none; 
                scrollbar-width: none; 
            }
            .lista-jogos .jogo-card {
                min-width: 120px; 
                height: 182px;
                flex-shrink: 0; 
            }
            .lista-jogos .jogos-container::-webkit-scrollbar {
                display: none; 
            }
            .lista-jogos .jogo-img {
                transform: scale(0.9);
            }
            .lista-jogos .jogo-info .nome {
                font-size: 12px;
            }
            .lista-jogos .jogar-btn {
                padding: 8px 16px;
                font-size: 13px;
            }

            /* Estilos para a lista de aovivo */    
            .aovivo-resultados{
                margin-top: -30px;
            }

            /* Botão Esporte */   
            .botao-esporte {
                width: 70%;
                height: 45px;
                position: fixed;
                z-index: 998; 
                border-radius: 0px 25px 25px 0px;
            }
            .botao-esporte .botao-esporte-btn {
                font-size: 15px;
            }
            .botao-esporte-btn i {
                margin-right: 8px;
            } 
}

