
/* ============================================
   RESETANDO ESTILOS GLOBAIS
   ============================================ */
* {
    box-sizing: border-box;
}

body {
    background-color: #0a0e27;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

/* ============================================
   BARRA DE BÔNUS NO TOPO
   ============================================ */
.bonus-cadastro {
    width: 100%;
    background-color: #9D00FF;
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
    z-index: 999;
    box-sizing: border-box;
}

/* ============================================
   HEADER / TOP BAR - PROFISSIONAL SIMILAR STAKE
   ============================================ */
.top-bar {
    background-color: #1a1f3a;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    box-sizing: border-box;
}

/* Logo */
.header-logo img {
    width: 50px;
    height: auto;
    transition: opacity 0.3s;
}

.header-logo img:hover {
    opacity: 0.8;
}

/* Menu Horizontal (Desktop) */
.header-nav {
    display: flex;
    gap: 30px;
    flex: 1;
    margin: 0 40px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #9D00FF;
    border-bottom-color: #9D00FF;
}

/* Botões de Autenticação */
.header-buttons {
    display: flex;
    gap: 12px;
}

.btn-signup,
.btn-login {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-signup {
    background-color: #9D00FF;
    color: #fff;
}

.btn-signup:hover {
    background-color: #BF40FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 179, 102, 0.3);
}

.btn-login {
    background-color: transparent;
    color: #fff;
    border: 1.5px solid #9D00FF;
}

.btn-login:hover {
    background-color: #9D00FF;
    box-shadow: 0 4px 12px rgba(0, 179, 102, 0.3);
}

/* Menu Toggle (Hamburger) - Hidden by Default */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #9D00FF;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: #BF40FF;
}

/* Menu Mobile */
.mobile-menu {
    display: none;
    position: fixed;
    left: -250px;
    top: 70px;
    width: 250px;
    height: calc(100vh - 70px);
    background-color: #1a1f3a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    z-index: 99;
    transition: left 0.3s ease;
    padding: 0;
    overflow-y: auto;
}

.mobile-menu.show {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #2a2f4a;
    position: sticky;
    top: 0;
    background-color: #1a1f3a;
}

.mobile-menu-header span {
    font-size: 16px;
    font-weight: 600;
}

.menu-close {
    background: none;
    border: none;
    color: #9D00FF;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.menu-close:hover {
    color: #BF40FF;
}

.mobile-menu-link {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    border-bottom: 1px solid #2a2f4a;
    transition: all 0.3s;
    font-size: 14px;
}

.mobile-menu-link:hover {
    background-color: rgba(0, 179, 102, 0.1);
    color: #9D00FF;
}

/* ============================================
   CONTEÚDO DE TERMOS (SIDEBAR)
   ============================================ */
.sidebar {
    position: fixed;
    left: -300px;
    top: 70px;
    width: 300px;
    height: calc(100vh - 70px);
    background-color: #1a1f3a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    transition: left 0.3s ease-in-out;
    z-index: 98;
    overflow: hidden;
}

.sidebar.show {
    left: 0;
}

.sidebar-content {
    position: absolute;
    top: 50px;
    bottom: 0;
    overflow-y: auto;
    padding: 20px;
    text-align: justify;
    font-size: 13px;
    color: #ccc;
    scrollbar-width: thin;
    scrollbar-color: #9D00FF #0a0e27;
}

.sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background-color: #9D00FF;
    border-radius: 10px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: #0a0e27;
}

.close-sidebar {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #9D00FF;
    transition: color 0.3s;
    z-index: 10;
}

.close-sidebar:hover {
    color: #BF40FF;
}

/* ============================================
   SLIDER
   ============================================ */
.slider-wrapper {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

.slider-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.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: 8px;
}

.dots {
    text-align: center;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #444;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background-color: #666;
}

.dot.active {
    background-color: #9D00FF;
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   CARROSSEL DE GANHADORES
   ============================================ */
.ganhos-container {
    display: flex;
    overflow: hidden;
    height: 100px;
    margin-top: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

.ganhos-fixo {
    flex: 0 0 180px;
    background: linear-gradient(135deg, #9D00FF 0%, #BF40FF 100%);
    color: #fff;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 15px;
    box-sizing: border-box;
}

.ganhos-fixo i {
    font-size: 35px;
    color: #fff;
}

.ganhos-fixo span {
    line-height: 1.3;
    font-size: 12px;
}

.ganhos-rolando {
    flex: 1;
    overflow: hidden;
    position: relative;
    background-color: #1a1f3a;
}

.ganhos-slider {
    display: flex;
    align-items: center;
    height: 100%;
    animation: slide-infinite 30s linear infinite;
}

@keyframes slide-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.card {
    display: flex;
    align-items: center;
    background-color: transparent;
    color: #fff;
    padding: 0 20px;
    min-width: 250px;
    height: 100%;
    box-sizing: border-box;
    white-space: nowrap;
}

.card img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 6px;
    object-fit: contain;
}

.valor {
    color: #9D00FF;
    font-weight: bold;
    font-size: 14px;
}

/* ============================================
   BUSCADOR DE JOGOS
   ============================================ */
.busca-container {
    margin: 40px auto;
    max-width: 1400px;
    padding: 0 20px;
}

.busca-input-icon {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.busca-input-icon i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #9D00FF;
    pointer-events: none;
}

.busca-input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: none;
    border-radius: 6px;
    height: 50px;
    background-color: #1a1f3a;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
}

.busca-input:focus {
    outline: none;
    border: 1px solid #9D00FF;
    box-shadow: 0 0 10px rgba(0, 179, 102, 0.3);
}

.busca-resultado {
    max-width: 600px;
    margin: 15px auto;
    text-align: left;
}

.busca-tabela-resultado {
    width: 100%;
    max-width: 1400px;
    margin: 10px auto;
    border-collapse: collapse;
    background-color: #1a1f3a;
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.busca-tabela-resultado td {
    padding: 12px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #2a2f4a;
}

.busca-tabela-resultado tr:last-child td {
    border-bottom: none;
}

.col-img {
    width: 70px;
    text-align: center;
}

.col-nome {
    width: 50%;
    font-size: 14px;
}

.col-jogadores {
    font-size: 12px;
    text-align: center;
    color: #aaa;
}

.col-jogar {
    width: 100px;
    text-align: right;
}

.busca-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 4px;
    background-color: #0a0e27;
}

.btn-jogar {
    padding: 8px 16px;
    background-color: #9D00FF;
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
    font-weight: 600;
}

.btn-jogar:hover {
    background-color: #BF40FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    background-color: #00ff00;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    vertical-align: middle;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.sem-resultado {
    text-align: center;
    color: #aaa;
    padding: 30px;
    font-size: 14px;
}

/* ============================================
   LISTAGEM DE JOGOS - GRID PRINCIPAL
   ============================================ */
.lista-jogos {
    background-color: #0a0e27;
    padding: 30px 20px;
    margin-top: 20px;
}

.lista-jogos,
.aovivo-resultados {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.titulo-lista-jogos,
.aovivo-titulo {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid de Jogos - 7 colunas no desktop */
.jogos-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.jogo-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1428 100%);
    height: 200px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #2a2f4a;
}

.jogo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 179, 102, 0.2);
    border-color: #9D00FF;
}

.jogo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.3s;
}

.jogo-card:hover .jogo-img {
    transform: scale(1.1);
}

.jogo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
    z-index: 10;
}

.jogo-card:hover .jogo-overlay {
    opacity: 1;
}

.jogar-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #9D00FF 0%, #BF40FF 100%);
    border: none;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    z-index: 20;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.jogar-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 179, 102, 0.4);
}

.jogar-btn i {
    margin-right: 6px;
}

.jogo-info {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    color: white;
    z-index: 5;
}

.jogo-info .nome {
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.jogo-info .jogadores {
    margin-top: 4px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #aaa;
}

.jogadores-text {
    margin-left: 2px;
}

.btn-ver-mais {
    padding: 12px 30px;
    background: linear-gradient(135deg, #9D00FF 0%, #BF40FF 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin: 30px auto 0;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-ver-mais:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 179, 102, 0.4);
}

/* ============================================
   RESUL TADOS AO VIVO
   ============================================ */
.online-dot-red {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    background-color: #FF3B30;
    border-radius: 50%;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.aovivo-resultados {
    padding: 30px 20px;
}

#aovivo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

.aovivo-entry {
    padding: 12px;
    background: #1a1f3a;
    border-radius: 6px;
    color: white;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    transition: all 0.3s;
    border: 1px solid #2a2f4a;
}

.aovivo-entry:hover {
    background-color: #232844;
    border-color: #9D00FF;
}

.aovivo-entry img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin-right: 12px;
    object-fit: contain;
}

.aovivo-info {
    font-size: 12px;
    flex: 1;
}

.aovivo-amount {
    color: #9D00FF;
    font-weight: bold;
    font-size: 14px;
}

/* ============================================
   MODAIS
   ============================================ */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999;
    backdrop-filter: blur(4px);
}

.overlay.show {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1a1f3a;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    width: 90%;
    max-width: 420px;
    border-radius: 8px;
    border: 1px solid #2a2f4a;
}

.modal.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translate(-50%, -55%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.modal-content h2 {
    margin: 0 0 20px 0;
    font-size: 24px;
    color: #9D00FF;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    color: #9D00FF;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #BF40FF;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .input-icon {
    flex: 1;
    min-width: 100%;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9D00FF;
    pointer-events: none;
}

.input-icon input,
.input-icon textarea {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #2a2f4a;
    border-radius: 6px;
    color: #fff;
    background-color: #0a0e27;
    outline: none;
    font-size: 13px;
    transition: all 0.3s;
    font-family: Arial, sans-serif;
}

.input-icon input:focus,
.input-icon textarea:focus {
    border-color: #9D00FF;
    box-shadow: 0 0 8px rgba(0, 179, 102, 0.2);
}

.input-icon input::placeholder,
.input-icon textarea::placeholder {
    color: #666;
}

.input-icon textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #9D00FF 0%, #BF40FF 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 179, 102, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.termos {
    font-size: 11px;
    color: #aaa;
    line-height: 1.4;
    text-align: justify;
    margin-top: 15px;
}

.termos p {
    margin: 0 0 5px 0;
}

.termos a {
    color: #9D00FF;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.termos a:hover {
    text-decoration: underline;
    color: #BF40FF;
}

.recover-password,
.log-in,
.create-account {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.recover-password {
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 15px;
}

.recover-password a,
.log-in a,
.create-account a {
    color: #9D00FF;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.3s;
}

.recover-password a:hover,
.log-in a:hover,
.create-account a:hover {
    color: #BF40FF;
    text-decoration: underline;
}

#alerta-cadastro,
#alerta-login,
#alerta-senha,
#alerta-contato {
    width: 100%;
    display: none;
    font-size: 13px;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 6px;
}

.alertanao {
    color: #FF3B30;
    background-color: rgba(255, 59, 48, 0.1);
}

.alertasim {
    color: #9D00FF;
    background-color: rgba(0, 179, 102, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    color: #fff;
    width: 100%;
    padding: 50px 20px 20px;
    background-color: #1a1f3a;
    margin-top: 50px;
}

.footer-line {
    border-top: 1px solid #2a2f4a;
    margin: 30px auto;
    max-width: 1400px;
}

.container-footer {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-column {
    min-width: 0;
}

.footer-column:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-column h4 {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: #9D00FF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #9D00FF;
}

.footer img {
    max-width: 120px;
    height: auto;
}

.footer img.pix-logo {
    max-width: 100px !important;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 179, 102, 0.1);
    border-radius: 50%;
    color: #9D00FF;
    transition: all 0.3s;
    font-size: 18px;
}

.social-icons a:hover {
    background-color: #9D00FF;
    color: #fff;
    transform: translateY(-3px);
}

.footer-text {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 11px;
    color: #777;
    line-height: 1.6;
    padding: 0 20px;
}

.ver-mais-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #9D00FF 0%, #BF40FF 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s;
}

.ver-mais-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 179, 102, 0.3);
}

.footer-centered-img {
    max-width: 1400px;
    margin: 30px auto;
    text-align: center;
}

.selo-img {
    max-width: 300px !important;
    height: auto !important;
}

.footer-bottom {
    max-width: 1400px;
    margin: 30px auto 0;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.footer-bottom p {
    margin: 8px 0;
}

.footer-bottom span {
    margin: 0 8px;
    color: #555;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (954px)
   ============================================ */
@media (max-width: 954px) {
    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-container {
        justify-content: space-between;
    }

    .jogos-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }

    .jogo-card {
        height: 170px;
    }

    .container-footer {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
        padding: 0 15px;
    }

    .header-logo img {
        width: 40px;
    }

    .header-buttons {
        gap: 8px;
    }

    .btn-signup,
    .btn-login {
        padding: 8px 16px;
        font-size: 12px;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
    }

    .bonus-cadastro {
        font-size: 12px;
        padding: 6px 15px;
    }

    .slider-wrapper {
        margin: 20px auto;
    }

    .slider-container {
        height: 150px;
    }

    .slide {
        height: 150px;
    }

    .ganhos-container {
        height: 80px;
        margin-top: 20px;
    }

    .ganhos-fixo {
        flex: 0 0 120px;
        gap: 8px;
        padding: 10px;
    }

    .ganhos-fixo i {
        font-size: 24px;
    }

    .ganhos-fixo span {
        font-size: 10px;
    }

    .busca-container {
        margin: 30px 15px;
    }

    .jogos-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .jogo-card {
        height: 140px;
    }

    .jogo-info .nome {
        font-size: 11px;
    }

    .jogo-info .jogadores {
        font-size: 10px;
    }

    .lista-jogos {
        padding: 20px 15px;
    }

    .titulo-lista-jogos {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .btn-jogar {
        padding: 6px 12px;
        font-size: 11px;
    }

    .modal {
        width: calc(100% - 30px);
        padding: 20px;
        max-width: none;
    }

    .modal-content h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .input-icon input,
    .input-icon textarea {
        font-size: 16px;
    }

    .container-footer {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        margin-bottom: 10px;
    }

    .footer-column ul li {
        margin-bottom: 8px;
    }

    .footer img {
        max-width: 100px;
    }

    .footer {
        padding: 30px 15px 15px;
    }

    .footer-text {
        font-size: 10px;
        padding: 0 15px;
    }

    .footer-bottom {
        font-size: 11px;
    }

    .aovivo-resultados {
        padding: 20px 15px;
    }

    #aovivo-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE PEQUENO (480px)
   ============================================ */
@media (max-width: 480px) {
    .header-container {
        height: 55px;
        padding: 0 12px;
    }

    .header-logo img {
        width: 35px;
    }

    .header-buttons {
        display: none;
    }

    .mobile-menu {
        width: 100%;
        left: -100%;
    }

    .bonus-cadastro {
        font-size: 11px;
        padding: 5px 12px;
    }

    .slider-container {
        height: 120px;
    }

    .slide {
        height: 120px;
    }

    .jogos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .jogo-card {
        height: 110px;
    }

    .jogo-info .nome {
        font-size: 10px;
    }

    .ganhos-container {
        height: 70px;
    }

    .ganhos-fixo {
        flex: 0 0 100px;
    }

    .ganhos-fixo span {
        font-size: 9px;
    }

    .ganhos-fixo i {
        font-size: 20px;
    }

    .titulo-lista-jogos {
        font-size: 12px;
    }

    .btn-ver-mais {
        padding: 10px 16px;
        font-size: 12px;
    }

    .modal {
        width: calc(100% - 20px);
    }

    .sozial-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}
