
/* ================================
   POPUP INICIAL – USUÁRIO NÃO LOGADO
   ================================ */
.welcome-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    cursor: pointer;
}

.welcome-popup {
    max-width: 400px;
    width: 90%;
    background-color: #1E1E1E;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}

.welcome-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.welcome-close {
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-top: 1px solid #333;
    background-color: #FDCE32;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.welcome-close i {
    font-size: 14px;
}

.welcome-close:hover {
    background-color: #C69001;
}

/* ================================
   VARIÁVEIS E BASE
   ================================ */
:root {
    --cor-principal: #FDCE32;
    --cor-hover: #C69001;
    --cor-texto-btn: #FFFFFF;
    --bg-dark: #050509;
    --bg-dark-elevated: #12121a;
    --bg-card: #181821;
    --bg-input: #15151d;
    --border-soft: #27273a;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.55);
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.6);
    --text-muted: #b3b3c2;
    --text-light: #f5f5ff;
    --transition-fast: 0.2s ease-out;
    --transition-med: 0.3s ease-out;
}

/* GLOBAL */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background:
        radial-gradient(
            circle at top,
            rgba(253,
                  206,
                  50,
                  0.2) 0,
            transparent 55%
        ),
        radial-gradient(circle at bottom, #202040 0, transparent 55%),
        var(--bg-dark);
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
}

/* ================================
   BÔNUS CADASTRO – TOPO
   ================================ */
.bonus-cadastro {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    background: linear-gradient(90deg, var(--cor-principal), var(--cor-hover));
    color: var(--cor-texto-btn);
    text-align: center;
    padding: 7px 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    z-index: 999;
    text-transform: uppercase;
}

/* ================================
   TOPO / HEADER
   ================================ */
.top-bar {
    width: 100%;
    background: rgba(10, 10, 16, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 900;
}

.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: 110px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
}

.buttons {
    display: flex;
    gap: 10px;
}

.button {
    padding: 10px 22px;
    background: radial-gradient(circle at top left, #ffffff22 0, transparent 55%), var(--cor-principal);
    color: var(--cor-texto-btn);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.75);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-med);
}

.button:hover {
    background: radial-gradient(circle at top left, #ffffff33 0, transparent 55%), var(--cor-hover);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.85);
}

/* ================================
   SIDEBAR TERMOS
   ================================ */
.sidebar {
    position: fixed;
    left: -320px;
    top: 0;
    width: 320px;
    height: 100%;
    background: rgba(12, 12, 20, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.95);
    transition: left var(--transition-med);
    z-index: 9999;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar.show {
    left: 0;
}

.sidebar-content {
    position: absolute;
    top: 50px;
    bottom: 0;
    overflow-y: auto;
    padding: 18px 16px 16px;
    text-align: justify;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    scrollbar-width: thin;
    scrollbar-color: var(--cor-principal) #121212;
}

.sidebar-content::-webkit-scrollbar {
    width: 8px;
}
.sidebar-content::-webkit-scrollbar-thumb {
    background-color: var(--cor-principal);
    border-radius: 10px;
}
.sidebar-content::-webkit-scrollbar-thumb:hover {
    background-color: var(--cor-hover);
}
.sidebar-content::-webkit-scrollbar-track {
    background: #121212;
}

.close-sidebar {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: var(--cor-principal);
    transition: color var(--transition-med), transform var(--transition-fast);
    background: none;
    border: none;
}

.close-sidebar:hover {
    color: var(--cor-hover);
    transform: scale(1.05);
}

/* ================================
   BOTÃO ESPORTE
   ================================ */
.botao-esporte {
    width: 220px;
    height: 60px;
    background: radial-gradient(circle at top left, #ffffff22 0, transparent 60%), var(--cor-principal);
    border-bottom-right-radius: 26px;
    border-top-right-radius: 26px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.botao-esporte .botao-esporte-card {
    width: 100%;
    height: 100%;
}

.botao-esporte .botao-esporte-btn {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    color: var(--cor-texto-btn);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.botao-esporte-btn i {
    margin-right: 2px;
}

.botao-esporte:hover {
    filter: brightness(1.08);
    background-color: var(--cor-hover);
}

/* ================================
   SLIDER PRINCIPAL
   ================================ */
.slider-wrapper {
    max-width: 1000px;
    margin: 32px auto 20px;
    padding: 0 20px;
}

.slider-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    background: linear-gradient(135deg, #1a1a24, #14141c);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    height: 220px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin: 0 5px;
    background-color: #4a4a5a;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background-color var(--transition-med), transform var(--transition-fast), border var(--transition-fast);
}

.dot.active {
    background-color: var(--cor-principal);
    border-color: #ffffff22;
    transform: scale(1.1);
}

/* ================================
   BUSCA
   ================================ */
.busca-container {
    margin: 30px auto 0;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px 10px;
}

.busca-form-row {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.busca-input-icon {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.busca-input-icon i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--cor-principal);
    opacity: 0.9;
}

.busca-input {
    width: 100%;
    padding: 10px 14px 10px 42px;
    border-radius: 999px;
    height: 50px;
    background-color: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-size: 15px;
    outline: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
    transition:
        border var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-med);
}

.busca-input::placeholder {
    color: #77778a;
}

.busca-input:focus {
    border: 1px solid var(--cor-principal);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 22px rgba(0, 0, 0, 0.9);
    background-color: #181822;
}

.busca-resultado {
    max-width: 700px;
    margin: 6px auto 0;
    text-align: left;
}

.busca-tabela-resultado {
    width: 100%;
    margin: 5px auto 0;
    border-collapse: collapse;
    background-color: var(--bg-card);
    color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    table-layout: fixed;
}

.busca-tabela-resultado td {
    padding: 10px 12px;
    vertical-align: middle;
    overflow: hidden;
}

.col-img {
    width: 60px;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
}

.col-nome {
    width: 45%;
    font-size: 15px;
}

.col-jogadores {
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
    font-size: 12px;
    text-align: center;
    color: var(--text-muted);
}

.col-jogar {
    width: 120px;
    text-align: right;
}

.busca-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: #101018;
}

.btn-jogar {
    padding: 7px 14px;
    background: radial-gradient(circle at top left, #ffffff22 0, transparent 60%), var(--cor-principal);
    border: none;
    color: var(--cor-texto-btn);
    border-radius: 999px;
    cursor: pointer;
    transition: background-color var(--transition-med), transform var(--transition-fast), box-shadow var(--transition-fast);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.75);
}

.btn-jogar:hover {
    background-color: var(--cor-hover);
    transform: translateY(-1px);
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.9);
}

.online-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 6px;
    background-color: #00ff7b;
    border-radius: 50%;
    animation: piscar 1s infinite;
    vertical-align: middle;
}

@keyframes piscar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

.sem-resultado {
    text-align: center;
    color: var(--text-muted);
    padding: 20px;
    font-size: 15px;
    background-color: transparent;
}

/* ================================
   CARROSSEL GANHADORES
   ================================ */
.ganhos-container {
    display: flex;
    overflow: hidden;
    height: 90px;
    margin-top: 35px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(24, 24, 36, 0.96), rgba(14, 14, 24, 0.96));
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.ganhos-fixo {
    flex: 0 0 170px;
    color: white;
    font-weight: 600;
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.ganhos-fixo i {
    font-size: 30px;
    color: #ffd54a;
    filter: drop-shadow(0 0 10px rgba(255, 213, 74, 0.6));
}

.ganhos-fixo span {
    line-height: 1.2;
    font-size: 13px;
    text-transform: uppercase;
}

.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: radial-gradient(circle at top left, #ffffff12 0, transparent 60%), #161622;
    color: #fff;
    padding: 10px;
    margin-right: 15px;
    border-radius: 12px;
    min-width: 220px;
    height: 72px;
    box-sizing: border-box;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.8);
}

.card img {
    width: 48px;
    height: 48px;
    margin-right: 10px;
    border-radius: 6px;
    object-fit: contain;
    background-color: #0f0f18;
}

.valor {
    color: var(--cor-principal);
    font-weight: 700;
}

/* ================================
   LISTA JOGOS / AOVIVO
   ================================ */
.lista-jogos,
.aovivo-resultados {
    background-color: transparent;
    padding: 20px;
    max-width: 1000px;
    margin: 5px auto 0;
}

.lista-jogos .jogos-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.titulo-lista-jogos,
.aovivo-titulo {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    margin: 16px 0 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lista-jogos .jogo-card {
    background: radial-gradient(circle at top left, #ffffff14 0, transparent 60%), #181824;
    height: 230px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: transform var(--transition-med), box-shadow var(--transition-med), border var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.85);
}

.lista-jogos .jogo-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95);
    border-color: rgba(255, 255, 255, 0.06);
}

.lista-jogos .jogo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0.94);
    transform-origin: center;
    border-radius: 16px;
    background-color: #111119;
}

.lista-jogos .jogo-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.82) 55%);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity var(--transition-med);
    z-index: 10;
}

.lista-jogos .jogo-card:hover .jogo-overlay {
    opacity: 1;
}

.lista-jogos .jogar-btn {
    background: radial-gradient(circle at top left, #ffffff22 0, transparent 60%), var(--cor-principal);
    border: none;
    color: var(--cor-texto-btn);
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.95);
    transition: background var(--transition-med), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.lista-jogos .jogar-btn:hover {
    background-color: var(--cor-hover);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 1);
}

.lista-jogos .jogo-info {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    color: white;
    padding: 0 6px 4px;
}

.lista-jogos .jogo-info .nome {
    font-size: 13px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.lista-jogos .jogo-info .jogadores {
    margin-top: 4px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--text-muted);
}

.jogadores-text {
    margin-left: 4px;
}

.btn-ver-mais {
    padding: 10px 22px;
    background: radial-gradient(circle at top left, #ffffff22 0, transparent 60%), var(--cor-principal);
    color: var(--cor-texto-btn);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    display: block;
    margin: 20px auto 0;
    transition: background var(--transition-med), transform var(--transition-fast), box-shadow var(--transition-fast);
    font-weight: 600;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.9);
}

.btn-ver-mais:hover {
    background-color: var(--cor-hover);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 1);
}

/* ================================
   MODAIS
   ================================ */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.75) 0, rgba(0, 0, 0, 0.95) 55%);
    z-index: 999;
}

.overlay.show {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at top left, #ffffff10 0, transparent 60%), #15151f;
    padding: 22px 20px 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.9);
    z-index: 1000;
    width: 90%;
    max-width: 420px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal.show {
    display: block;
}

.modal-content h2 {
    margin: 0 0 18px;
    font-size: 22px;
    color: var(--cor-principal);
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 18px;
    color: var(--cor-principal);
    cursor: pointer;
    transition: color var(--transition-med), transform var(--transition-fast);
    background: none;
    border: none;
}

.close-modal:hover {
    color: var(--cor-hover);
    transform: scale(1.05);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.form-row .input-icon {
    flex: 1;
}

.input-icon {
    position: relative;
    margin-bottom: 5px;
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cor-principal);
    pointer-events: none;
    font-size: 15px;
}

.input-icon input,
.input-icon textarea {
    padding-left: 38px;
    width: 100%;
    height: 45px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: #ffffff;
    background-color: var(--bg-input);
    outline: none;
    font-size: 14px;
    font-family: inherit;
    transition:
        border var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-med);
}

.input-icon textarea {
    border-radius: 14px;
    padding-top: 10px;
    min-height: 70px;
}

.input-icon input::placeholder,
.input-icon textarea::placeholder {
    color: #77778a;
}

.input-icon input:focus,
.input-icon textarea:focus {
    border-color: var(--cor-principal);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 18px rgba(0, 0, 0, 0.85);
    background-color: #181822;
}

.submit-button {
    width: 100%;
    padding: 14px 20px;
    background: radial-gradient(circle at top left, #ffffff22 0, transparent 60%), var(--cor-principal);
    color: var(--cor-texto-btn);
    text-decoration: none;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.95);
    transition: background var(--transition-med), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.submit-button:hover {
    background-color: var(--cor-hover);
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 1);
}

input.submit-button.recuperar,
input.submit-button.abrir-conta,
input.submit-button.contato {
    margin-top: 10px !important;
}

.termos {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    text-align: justify;
    margin-top: 12px;
}

.termos a {
    color: var(--cor-principal);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

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

.recover-password {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
    margin-top: 5px;
    cursor: pointer;
}

.recover-password a,
.log-in a,
.create-account a {
    color: var(--cor-principal);
    text-decoration: none;
    font-size: 14px;
}

.recover-password a:hover,
.log-in a:hover,
.create-account a:hover {
    color: var(--cor-hover);
}

.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: -6px;
    display: none;
    font-size: 13px;
}

.alertanao {
    width: 100%;
    color: #ff4b4b;
    text-align: center;
    display: block;
    cursor: pointer;
    line-height: 22px;
}

.alertasim {
    width: 100%;
    color: var(--cor-principal);
    text-align: center;
    display: block;
    cursor: pointer;
    line-height: 22px;
}

/* ================================
   AOVIVO
   ================================ */
.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: #181822;
    box-shadow: var(--shadow-card);
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.aovivo-entry img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.aovivo-info {
    margin-left: 8px;
    font-size: 13px;
}

.aovivo-amount {
    color: var(--cor-principal);
    font-weight: 700;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    color: #fff;
    width: 100%;
    padding: 40px 0 20px;
    background: linear-gradient(180deg, transparent 0, #050509 40%, #020206 100%);
}

.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 h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--cor-principal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #ccccd9;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.footer img {
    max-width: 150px;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.85));
}

.footer img.pix-logo {
    max-width: 100px !important;
}

.social-icons a {
    margin-right: 10px;
    font-size: 24px;
    color: #ffffff;
    transition: color var(--transition-med), transform var(--transition-fast);
}

.social-icons a:hover {
    color: var(--cor-principal);
    transform: translateY(-1px);
}

.footer-line {
    border-top: 1px solid #3a3a4a;
    margin: 30px auto;
    max-width: 1000px;
}

.footer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 20px;
}

.ver-mais-btn {
    padding: 8px 18px;
    background: radial-gradient(circle at top left, #ffffff22 0, transparent 60%), var(--cor-principal);
    color: var(--cor-texto-btn);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    display: block;
    margin: 10px auto 0;
    transition: background var(--transition-med), transform var(--transition-fast), box-shadow var(--transition-fast);
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.95);
}

.ver-mais-btn:hover {
    background-color: var(--cor-hover);
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 1);
}

.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: #9999aa;
}

.footer-bottom span {
    margin: 0 8px;
}

/* ================================
   RESPONSIVO
   ================================ */
@media (max-width: 768px) {

    .bonus-cadastro {
        font-size: 3.4vw;
        padding: 6px 6px;
    }

    .container {
        padding: 0 14px;
    }

    .logo img {
        width: 90px;
    }

    .modal {
        width: calc(100% - 40px);
        max-width: none;
    }

    .input-icon input {
        font-size: 16px;
    }

    .footer .container-footer {
        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;
    }

    .busca-container {
        padding: 0 15px;
    }

    .col-nome {
        width: 70%;
        font-size: 14px;
    }

    .col-jogadores {
        font-size: 12px;
        width: 40%;
        text-align: center;
    }

    .col-jogar {
        width: 80px;
        text-align: right;
    }

    .lista-jogos {
        padding: 0 0 0 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: 130px;
        height: 190px;
        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;
    }

    .aovivo-resultados {
        margin-top: -20px;
        padding-inline: 12px;
    }

    .botao-esporte {
        width: 70%;
        height: 45px;
        position: fixed;
        top: auto;
        bottom: 15px;
        left: 0;
        z-index: 998;
        border-radius: 0 24px 24px 0;
    }

    .botao-esporte .botao-esporte-btn {
        font-size: 15px;
    }

    .botao-esporte-btn i {
        margin-right: 8px;
    }

    .slider-wrapper {
        padding-inline: 14px;
        margin-top: 24px;
    }

    .slider-container {
        height: 180px;
    }

    .ganhos-container {
        margin-inline: 14px;
        border-radius: 14px;
    }
}