/* ============================================
   TOKENS / VARIÁVEIS DE DESIGN
   ============================================ */
:root {
    /* Cores - Tema moderno */
    --color-primary: #7c3aed;
    --color-primary-dark: #5b21b6;
    --color-primary-light: #8b5cf6;
    --color-surface: #ffffff;
    --color-surface-elevated: #f8fafc;
    --color-border: #e2e8f0;
    --color-text-primary: #1e293b;
    --color-text-secondary: #64748b;
    --color-text-muted: #94a3b8;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* Bordas */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Transições */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.interface {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER PRINCIPAL
   ============================================ */
#header {
    background-color: var(--color-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

#header .interface {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* ============================================
   LOGO & NOME DO USUÁRIO
   ============================================ */
.logo-nome {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.logo a {
    display: block;
    transition: transform var(--transition-normal);
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

/* Alternância de logo clara/escura (para temas) */
.logo-clara { display: block; }
.logo-escura { display: none; }

/* Informações do usuário */
.usuario-info {
    display: none;
    align-items: center;
    gap: 10px;
}

.usuario-saudacao {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 15px;
}

.usuario-badge {
    background-color: var(--color-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   LADO DIREITO DO TOPO
   ============================================ */
.topo-direito {
    display: flex;
    align-items: center;
}

.topo-acoes {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ============================================
   ÍCONES DO TOPO (notificações, etc)
   ============================================ */
.topo-icone {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-fast);
}

.topo-icone:hover {
    background-color: var(--color-surface-elevated);
    color: var(--color-primary);
}

.notificacao-contador {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-surface);
}

/* ============================================
   AVATAR DO USUÁRIO
   ============================================ */
.usuario-avatar {
    position: relative;
}

.avatar-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-normal);
}

.avatar-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.avatar-iniciais {
    display: block;
    line-height: 1;
}

/* Dropdown do avatar */
.avatar-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    z-index: 1001;
    display: none;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.avatar-dropdown.active {
    display: block;
}

.dropdown-header {
    padding: 20px;
    background-color: var(--color-surface-elevated);
    border-bottom: 1px solid var(--color-border);
}

.dropdown-header strong {
    display: block;
    color: var(--color-text-primary);
    margin-bottom: 4px;
    font-size: 15px;
}

.dropdown-header small {
    display: block;
    color: var(--color-text-secondary);
    font-size: 13px;
    margin-bottom: 8px;
}

.tag-admin {
    background-color: var(--color-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: background-color var(--transition-fast);
    border-bottom: 1px solid var(--color-border);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--color-surface-elevated);
}

.dropdown-item i {
    width: 20px;
    color: var(--color-primary);
    font-size: 15px;
}

.dropdown-item.logout {
    color: #ef4444;
}

.dropdown-item.logout i {
    color: #ef4444;
}

.dropdown-divider {
    height: 1px;
    background-color: var(--color-border);
    margin: 8px 0;
}

/* ============================================
   BOTÕES DE ACESSO (não logado)
   ============================================ */
.botoes-acesso {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn i {
    font-size: 14px;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-1px);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (min-width: 640px) {
    .usuario-info {
        display: flex;
    }
    
    .topo-icone.notificacoes {
        display: flex;
    }
}

@media (max-width: 639px) {
    .btn span {
        display: none;
    }
    
    .btn {
        padding: 10px;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
    
    .btn i {
        margin: 0;
        font-size: 16px;
    }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.avatar-dropdown.active {
    animation: slideDown 200ms ease-out;
}



/* início saldo-topo-two*/
/* ============================================
   SALDO TOPO - CONTAINER PRINCIPAL
   ============================================ */
.saldo-topo-container {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin: 16px;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
}

.saldo-topo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

/* ============================================
   CABEÇALHO DO SALDO (usuário logado)
   ============================================ */
.saldo-info {
    position: relative;
    z-index: 1;
}

.saldo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.usuario-status {
    display: flex;
    gap: 8px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.status-badge.admin {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-badge.cliente {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-badge i {
    font-size: 12px;
}

.usuario-saudacao {
    flex: 1;
    text-align: right;
}

.saudacao-texto {
    font-size: 16px;
    font-weight: 500;
}

.saudacao-texto strong {
    color: #fbbf24;
    font-weight: 700;
}

/* ============================================
   DISPLAY DO SALDO
   ============================================ */
.saldo-display {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.saldo-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.label-texto {
    font-size: 14px;
    opacity: 0.9;
}

.label-hora {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    opacity: 0.7;
}

.label-hora i {
    font-size: 10px;
}

.saldo-valor-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.saldo-valor {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.moeda {
    font-size: 24px;
    font-weight: 600;
    opacity: 0.9;
}

.valor {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}

.valor-mascarado {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 4px;
    opacity: 0.8;
}

.btn-olho {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.2s;
}

.btn-olho:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.btn-olho:active {
    transform: scale(0.95);
}

/* ============================================
   BOTÕES DE AÇÃO RÁPIDA
   ============================================ */
.saldo-acoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.btn-acao {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 8px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    font-weight: 500;
}

.btn-acao:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-acao i {
    font-size: 20px;
}

.btn-acao:nth-child(1) i {
    color: #4ade80; /* Verde para depositar */
}

.btn-acao:nth-child(2) i {
    color: #f87171; /* Vermelho para sacar */
}

.btn-acao:nth-child(3) i {
    color: #60a5fa; /* Azul para extrato */
}

/* ============================================
   CONVITE PARA LOGIN (não logado)
   ============================================ */
.convite-login {
    position: relative;
    z-index: 1;
}

.convite-content {
    text-align: center;
}

.convite-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.convite-texto h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.convite-texto p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.convite-texto strong {
    color: #fbbf24;
    font-weight: 700;
}

.convite-botoes {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-convite {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
}

.btn-convite.login {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-convite.cadastrar {
    background: white;
    color: #7c3aed;
    border: none;
}

.btn-convite:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================
   BOTÃO MENU HAMBÚRGUER
   ============================================ */
.btn-menu-mobile {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s;
}

.btn-menu-mobile:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ============================================
   MENU LATERAL (aparece ao clicar no hambúrguer)
   ============================================ */
.menu-lateral-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-lateral-overlay.active {
    display: block;
    opacity: 1;
}

.menu-lateral {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 1001;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.menu-lateral.active {
    transform: translateX(-320px);
}

.menu-header {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.menu-usuario {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.menu-info {
    flex: 1;
}

.menu-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.menu-info small {
    font-size: 12px;
    opacity: 0.8;
}

.btn-fechar-menu {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.2s;
}

.btn-fechar-menu:hover {
    transform: scale(1.1);
}

.menu-itens {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.2s;
}

.menu-item:hover {
    background-color: #f3f4f6;
}

.menu-item i {
    width: 20px;
    color: #6b7280;
    font-size: 18px;
}

.menu-item.logout {
    color: #ef4444;
}

.menu-item.logout i {
    color: #ef4444;
}

.menu-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 16px 20px;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 640px) {
    .saldo-topo-container {
        margin: 12px;
        padding: 16px;
    }
    
    .saldo-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .usuario-saudacao {
        text-align: left;
        width: 100%;
    }
    
    .valor {
        font-size: 36px;
    }
    
    .valor-mascarado {
        font-size: 36px;
    }
    
    .saldo-acoes {
        grid-template-columns: 1fr;
    }
    
    .convite-botoes {
        flex-direction: column;
    }
    
    .btn-menu-mobile {
        top: 16px;
        right: 16px;
    }
}

@media (min-width: 768px) {
    .saldo-topo-container {
        margin: 20px auto;
        max-width: 600px;
    }
}
/* fim saldo-topo-two*/

/*início sessão informativo, resulado, icones*/
/* ============================================
   VARIÁVEIS PARA AS SEÇÕES
   ============================================ */
:root {
    --section-spacing: 32px;
    --card-radius: 16px;
    --card-padding: 24px;
    --color-surface: #ffffff;
    --color-surface-secondary: #f8fafc;
    --color-border: #e2e8f0;
    --color-primary: #7c3aed;
    --color-primary-light: #8b5cf6;
    --color-text-primary: #1e293b;
    --color-text-secondary: #64748b;
}

/* ============================================
   ESTRUTURA BASE DAS SEÇÕES
   ============================================ */
.home-sections {
    padding: 0 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-titulo {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-subtitulo {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.header-left, .header-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-link:hover {
    background-color: rgba(124, 58, 237, 0.1);
}

/* ============================================
   SEÇÃO 1: ÍCONES DINÂMICOS
   ============================================ */
.icones-rapidos-section {
    padding: var(--section-spacing) 0;
    border-bottom: 1px solid var(--color-border);
}

.icones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 480px) {
    .icones-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .icones-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.icone-card {
    display: block;
    text-decoration: none;
    transition: transform 0.2s;
}

.icone-card:hover {
    transform: translateY(-4px);
}

.icone-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 12px;
    border-radius: var(--card-radius);
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: all 0.2s;
}

.icone-card:hover .icone-wrapper {
    border-color: var(--color-primary-light);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.icone-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.icone-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: center;
    line-height: 1.3;
}

.icones-vazio {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--color-text-secondary);
}

.icones-vazio i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* ============================================
   SEÇÃO 2: INFORMAÇÕES DINÂMICAS
   ============================================ */
.informacoes-section {
    padding: var(--section-spacing) 0;
    border-bottom: 1px solid var(--color-border);
}

.informacoes-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fbbf24;
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.info-icon {
    background-color: #f59e0b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content p {
    margin: 0;
    color: #92400e;
    font-size: 15px;
    line-height: 1.5;
}

.info-close {
    background: none;
    border: none;
    color: #92400e;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.info-close:hover {
    opacity: 1;
}

/* ============================================
   SEÇÃO 3: RESULTADOS RÁPIDOS
   ============================================ */
/* .resultados-rapidos-section {
    padding: var(--section-spacing) 0;
    border-bottom: 1px solid var(--color-border);
}

.resultados-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .resultados-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .resultados-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.resultado-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--card-radius);
    padding: 20px;
    transition: all 0.2s;
}

.resultado-card:hover {
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.resultado-header {
    margin-bottom: 20px;
}

.loteria-nome {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.loteria-nome:hover {
    text-decoration: underline;
}

.loteria-info {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.resultado-numeros {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.numero-bola {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.resultado-footer {
    text-align: center;
}

.btn-detalhes {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: rgba(124, 58, 237, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-detalhes:hover {
    background-color: rgba(124, 58, 237, 0.2);
}

.resultados-carregando {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--color-text-secondary);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(124, 58, 237, 0.1);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
} */

/* Botões de loterias rápidas */
/* .loterias-rapidas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 480px) {
    .loterias-rapidas {
        grid-template-columns: repeat(4, 1fr);
    }
} */

/* .loteria-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--card-radius);
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 600;
    transition: all 0.2s;
}

.loteria-btn:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary-light);
}

.loteria-btn i {
    font-size: 24px;
} */

/* Cores específicas para cada loteria */
.lotofacil { border-top: 4px solid #10b981; }
.megasena { border-top: 4px solid #ef4444; }
.duplasena { border-top: 4px solid #3b82f6; }
.quina { border-top: 4px solid #f59e0b; }

.lotofacil:hover { background-color: rgba(16, 185, 129, 0.05); }
.megasena:hover { background-color: rgba(239, 68, 68, 0.05); }
.duplasena:hover { background-color: rgba(59, 130, 246, 0.05); }
.quina:hover { background-color: rgba(245, 158, 11, 0.05); }

/* ============================================
   SEÇÃO 4: BOLÕES DISPONÍVEIS
   ============================================ */
.boloes-section {
    padding: var(--section-spacing) 0;
}

.filtros-rapidos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filtro-btn {
    padding: 8px 16px;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.filtro-btn.active,
.filtro-btn:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.boloes-container {
    min-height: 300px;
}

.boloes-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-secondary);
}

.placeholder-icon {
    font-size: 64px;
    color: var(--color-border);
    margin-bottom: 24px;
}

.boloes-placeholder h3 {
    font-size: 20px;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

/* ============================================
   RESPONSIVIDADE GERAL
   ============================================ */
@media (max-width: 767px) {
    .home-sections {
        padding: 0 12px;
    }
    
    .section-header {
        flex-direction: column;
    }
    
    .header-right {
        width: 100%;
    }
    
    .filtros-rapidos {
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .home-sections {
        padding: 0 24px;
    }
}
/*fim sessão informativo, resulado, icones*/


/* ============================================
   CABEÇALHO DA SEÇÃO DE BOLÕES
   ============================================ */
.section-header-boloes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-title i {
    font-size: 1.4rem;
    color: #7c3aed;
    background: #f0e7ff;
    padding: 8px;
    border-radius: 14px;
}

.header-title h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.header-count .badge {
    background: #eef2ff;
    color: #4f46e5;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 40px;
    font-size: 0.85rem;
    margin-right: 6px;
}

.header-count {
    color: #475569;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Ajuste no container do grid (já existe, mas garantimos consistência) */
.espaco-bolao {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .espaco-bolao {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* O cabeçalho deve ocupar toda a largura do grid */
    .section-header-boloes {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .espaco-bolao {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
/* 
.bolao-header {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 28px;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.bolao-titulo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.loteria-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    background: #facc15;
    color: #1e293b;
}
.loteria-badge.megasena { background: #facc15; color: #1e293b; }
.loteria-badge.dsena { background: #38bdf8; color: #0c4a6e; }
.loteria-badge.lotofacil { background: #4ade80; color: #14532d; }
.bolao-codigo {
    background: rgba(255,255,255,0.15);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-family: monospace;
}
.bolao-info-rapida {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.info-item {
    display: flex;
    flex-direction: column;
}
.info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
}
.info-valor {
    font-weight: 700;
    font-size: 1.1rem;
} */


/*card do bolao*/
/* ============================================
   CONTAINER COMPACTO
   ============================================ */
.espaco-bolao {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .espaco-bolao {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .espaco-bolao {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* ============================================
   CARD COMPACTO
   ============================================ */
/* ============================================
   CARD COMPACTO - VERSÃO PROFISSIONAL (CONTRASTE ELEVADO)
   ============================================ */
.bolao-card-compact {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e9edf2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.bolao-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 28px -12px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

/* ============================================
   CABEÇALHO COMPACTO
   ============================================ */
.bolao-header-compact {
    padding: 18px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.loteria-compact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.loteria-icon-mini {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.loteria-info-compact h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 4px 0;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.concurso-compact {
    font-size: 0.75rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.concurso-compact .dot {
    opacity: 0.6;
}

/* STATUS (cotas disponíveis / esgotado) */
.status-compact {
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.status-compact.disponivel {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.status-compact.esgotado {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.85;
}

/* ============================================
   CORPO COMPACTO
   ============================================ */
.bolao-body-compact {
    padding: 20px;
}

/* PRÊMIO (previsão) */
.premio-compact {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f4fa;
}

.premio-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #4b5565; /* cinza escuro elegante */
}

.premio-valor {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #2d3a4f);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

/* INFORMAÇÕES: código, jogos, total cotas */
.info-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

/* Ícones mais visíveis */
.info-item i {
    font-size: 1rem;
    color: #2c3e66;
    background: #eef2ff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.2s;
}

/* Textos escuros e legíveis */
.info-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e2a3e;
    line-height: 1.3;
}

/* Código do bolão com destaque monoespaçado */
.info-item:first-child span {
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 32px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.3px;
}

/* VALOR POR COTA + BOTÃO */
.acao-compact {
    display: flex;
    align-items: stretch;
    gap: 14px;
}

.valor-compact {
    flex: 1.2;
    background: linear-gradient(145deg, #fafcff, #f2f6fc);
    border-radius: 18px;
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.valor-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    /* color: #4b5565; */
    color: #fff;
    margin-bottom: 6px;
}

.valor-numero {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    /* color: #0f172a; */
    line-height: 1.2;
}

/* BOTÃO PARTICIPAR */
.btn-participar-compact {
    flex: 1;
    padding: 0 16px;
    background: linear-gradient(105deg, currentColor 0%, color-mix(in srgb, currentColor 75%, #000) 100%);
    color: white;
    border: none;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-participar-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 18px -8px color-mix(in srgb, currentColor 35%, transparent);
    filter: brightness(1.02);
}

.btn-esgotado-compact {
    flex: 1;
    background: #f1f5f9;
    color: #94a3b8;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    font-weight: 700;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   CORES DOS GRADIENTES POR LOTERIA
   ============================================ */
.lotofacil {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.megasena {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.quina {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.duplasena {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 480px) {
    .info-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .acao-compact {
        flex-direction: column;
        gap: 12px;
    }
    
    .premio-valor {
        font-size: 1.3rem;
    }
    
    .valor-numero {
        font-size: 1.1rem;
    }
    
    .bolao-body-compact {
        padding: 16px;
    }
}

@media (min-width: 640px) {
    .premio-valor {
        font-size: 1.6rem;
    }
    
    .valor-numero {
        font-size: 1.3rem;
    }
}

/* Suporte para navegadores sem color-mix (fallback) */
@supports not (color: color-mix(in srgb, red, blue)) {
    .btn-participar-compact {
        background: linear-gradient(135deg, currentColor 0%, #00000030 100%);
    }
}
/*fim card do bolao*/






/* ===== RODAPÉ MOBILE/iPAD ===== */
.site-footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 1.5rem 1rem;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #1e293b;
    margin-top: auto;
}

.footer-container {
    max-width: 768px; /* Limitar para iPad */
    margin: 0 auto;
}

/* Header */
.footer-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #334155;
}

.footer-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.footer-tagline i {
    color: #00d9ff;
    margin-right: 0.3rem;
}

/* Accordion */
.footer-accordion {
    margin-bottom: 1.5rem;
}

.accordion-item {
    border-bottom: 1px solid #334155;
}

.accordion-btn {
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-btn i {
    transition: transform 0.3s ease;
}

.accordion-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 0.5rem;
}

.accordion-content.active {
    max-height: 300px;
    padding-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    background: rgba(0, 217, 255, 0.1);
    color: #00d9ff;
}

.footer-links i {
    width: 20px;
    color: #00d9ff;
    font-size: 1rem;
}

/* Redes Sociais */
.footer-social-section {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.social-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp { background: #25D366; }
.telegram { background: #0088cc; }
.instagram { background: #E4405F; }
.facebook { background: #1877F2; }

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Badges Importantes */
.footer-important {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.pix-badge, .security-badge {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #334155;
}

.pix-badge i {
    font-size: 2rem;
    color: #00d9ff;
}

.security-badge i {
    font-size: 2rem;
    color: #10b981;
}

.pix-badge div, .security-badge div {
    display: flex;
    flex-direction: column;
}

.pix-badge strong, .security-badge strong {
    font-size: 0.9rem;
    color: #fff;
}

.pix-badge small, .security-badge small {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #334155;
}

.copyright p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.lottery-disclaimer {
    color: #64748b;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.lottery-disclaimer i {
    color: #00d9ff;
}

.footer-tech {
    margin-top: 1rem;
}

.load-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 217, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #00d9ff;
    font-size: 0.85rem;
}

.load-time b {
    color: #fff;
    font-weight: 700;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
}

/* iPad (768px - 1024px) */
@media (min-width: 768px) {
    .site-footer {
        padding: 2rem 1.5rem;
    }
    
    .footer-container {
        max-width: 960px;
    }
    
    .footer-important {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .footer-tagline {
        justify-content: flex-end;
    }
    
    .footer-accordion {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .accordion-item {
        border: none;
    }
    
    .accordion-btn {
        pointer-events: none;
        padding: 0 0 1rem 0;
    }
    
    .accordion-btn i {
        display: none;
    }
    
    .accordion-content {
        max-height: none !important;
        padding: 0 !important;
    }
}

/* Esconde em desktop acima de 1024px (se quiser) */
@media (min-width: 1025px) {
    .site-footer {
        /* Mantém o mesmo estilo do iPad */
        max-width: 1024px;
        margin-left: auto;
        margin-right: auto;
    }
}



/* ===== MENU INFERIOR FIXO ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0.5rem 0;
    height: 70px;
}

.nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

/* Itens do Menu */
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    position: relative;
    flex: 1;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 0 2px;
}

.nav-item.active {
    color: #00d9ff;
}

.nav-item.active .nav-icon {
    transform: translateY(-5px);
}

.nav-icon {
    position: relative;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.nav-label {
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-item.active .nav-label {
    font-weight: 700;
    font-size: 0.75rem;
}

/* Badges de Notificação */
.notification-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff4757;
    color: white;
    font-size: 0.6rem;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Saldo Badge */
.saldo-badge {
    position: absolute;
    top: -8px;
    right: -15px;
    background: #00d9ff;
    color: white;
    font-size: 0.55rem;
    padding: 2px 5px;
    border-radius: 10px;
    font-weight: bold;
    border: 2px solid white;
    white-space: nowrap;
}

/* Botão Central Destaque */
.nav-central {
    margin-top: -25px;
}

.nav-central-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
    transition: all 0.3s ease;
    border: 4px solid white;
}

.nav-central:hover .nav-central-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.6);
}

.nav-central .nav-label {
    margin-top: 0.5rem;
    color: #00d9ff;
    font-weight: 700;
}

/* Indicador de Página Ativa */
.nav-indicator {
    position: absolute;
    top: -3px;
    height: 3px;
    background: #00d9ff;
    border-radius: 3px;
    transition: all 0.3s ease;
    width: 20%;
}




/* Modal de Ações Rápidas */
.nav-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 70px; /* Acima do menu */
    z-index: 1001;
}

.nav-modal.active {
    display: block;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* .modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
    animation: slideUp 0.3s ease;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
} */

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: #f5f5f5;
}
/* esse modal gerou problema no modal boatstrap da configuração boa inicial*/
/* .modal-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
} */

.modal-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    background: #f8f9fa;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.modal-action:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.modal-action i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #00d9ff;
}

/* .modal-action span {
    font-size: 0.85rem;
    font-weight: 500;
} */

/* Ajuste para iPad */
@media (min-width: 768px) {
    .bottom-nav {
        max-width: 768px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 20px 20px 0 0;
        margin-bottom: 10px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: none;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    /* .modal-body {
        grid-template-columns: repeat(4, 1fr);
    } */
}

/* Ajuste de conteúdo principal para não ficar atrás do menu */
body {
    padding-bottom: 70px !important;
}



/* ===== RESULTADOS RÁPIDOS FINAL ===== */
/* .resultados-rapidos-section {
    padding: 1.2rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
} */

/* Cabeçalho */
/* .resultados-header {
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.section-title i {
    color: #00d9ff;
} */

/* Lista Horizontal de Cards Clicáveis */
/* .resultados-lista {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0.2rem;
    margin-bottom: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.resultados-lista::-webkit-scrollbar {
    height: 6px;
}

.resultados-lista::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.resultados-lista::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
} */

/* Cards Clicáveis */
/* .resultado-item {
    min-width: 250px;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.resultado-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #00d9ff;
} */

/* Cabeçalho da Loteria */
/* .loteria-header {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #e2e8f0;
}

.loteria-nome {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.loteria-info {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #64748b;
}

.concurso {
    font-weight: 600;
} */

/* Dezenas */
/* .dezenas {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.dezena {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */

/* Cores das bolinhas por loteria */
/* .mega-sena .dezena { 
    border-color: #209869;
    color: #209869;
    background: rgba(32, 152, 105, 0.1);
}

.lotofacil .dezena { 
    border-color: #930089;
    color: #930089;
    background: rgba(147, 0, 137, 0.1);
}

.quina .dezena { 
    border-color: #260085;
    color: #260085;
    background: rgba(38, 0, 133, 0.1);
}

.duplasena .dezena { 
    border-color: #ff6600;
    color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
}

.sorteio-label {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    margin: 0.5rem 0;
} */

/* Prêmio */
/* .premio {
    text-align: center;
    margin: 0.8rem 0;
}

.premio-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.2rem;
}

.premio-valor {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
} */

/* Status */
/* .status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

.status.acumulado {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.status.ganhou {
    background: rgba(0, 217, 255, 0.1);
    color: #00d9ff;
}

.status i {
    font-size: 0.9rem;
} */

/* Links Rápidos das Loterias (Abaixo do carrossel) */
/* .loterias-rapidas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.loteria-rapida {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 0.5rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #475569;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.loteria-rapida:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    border-color: #00d9ff;
}

.loteria-rapida i {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
} */

/* .loteria-rapida:nth-child(1) i { color: #209869; } Mega-Sena */
/* .loteria-rapida:nth-child(2) i { color: #930089; } Lotofácil */
/* .loteria-rapida:nth-child(3) i { color: #260085; } Quina */
/* .loteria-rapida:nth-child(4) i { color: #ff6600; } Dupla Sena */

/* .loteria-rapida span {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
} */

/* Responsividade */
/* @media (max-width: 768px) {
    .resultado-item {
        min-width: 85vw;
    }
    
    .loterias-rapidas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .loterias-rapidas {
        grid-template-columns: 1fr;
    }
    
    .dezena {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}
 */




/* ===== SESSÃO INFORMATIVOS ===== */
.informativos-section {
    padding: 1rem 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.informativos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d9ff, #ff6b6b, #feca57, #1dd1a1);
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Carrossel Principal */
.informativos-carrossel {
    position: relative;
    min-height: 140px;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Slides */
.informativo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.2rem 1.5rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.informativo-slide.ativo {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

/* Conteúdo do Slide */
.slide-content {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.slide-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Cores dos slides */
.slide-promocao .slide-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.slide-destaque .slide-icon {
    background: linear-gradient(135deg, #00d9ff, #0099cc);
}

.slide-aviso .slide-icon {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
}

.slide-tutorial .slide-icon {
    background: linear-gradient(135deg, #feca57, #ff9f43);
}

.slide-text {
    flex: 1;
}

.slide-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.slide-desc {
    font-size: 0.9rem;
    color: #475569;
    margin: 0 0 0.8rem 0;
    line-height: 1.4;
}

.slide-desc strong {
    color: #00d9ff;
    font-weight: 700;
}

/* Badges e Informações */
.slide-details,
.slide-info,
.slide-features,
.slide-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.8rem;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 15px;
    color: #00d9ff;
    font-weight: 600;
}

.slide-info span,
.slide-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #64748b;
}

.slide-info i {
    color: #00d9ff;
}

.slide-features i {
    color: #1dd1a1;
}

.slide-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.slide-steps span {
    font-size: 0.75rem;
    color: #64748b;
    padding: 0.3rem;
    background: #f8fafc;
    border-radius: 8px;
    text-align: center;
}

/* Botão de Ação */
.slide-action {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.slide-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}

/* Botão Fechar (apenas no slide de promoção) */
.slide-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.slide-close:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

/* Indicadores (Pontinhos) */
.carrossel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.indicator.ativo {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Controles de Navegação (setas) */
.carrossel-controls {
    display: none;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0.5rem;
    right: 0.5rem;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.control-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #00d9ff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    pointer-events: all;
}

.control-btn:hover {
    background: #00d9ff;
    color: white;
    transform: scale(1.1);
}

/* Responsividade */
@media (min-width: 768px) {
    .informativos-section {
        padding: 1.5rem 1rem 2rem;
    }
    
    .informativos-carrossel {
        min-height: 160px;
    }
    
    .slide-content {
        margin-bottom: 1.2rem;
    }
    
    .slide-title {
        font-size: 1.2rem;
    }
    
    .slide-desc {
        font-size: 1rem;
    }
    
    .carrossel-controls {
        display: flex;
    }
    
    .informativo-slide {
        padding: 1.5rem 2rem;
    }
    
    .slide-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .informativos-carrossel {
        min-height: 160px;
    }
    
    .informativo-slide {
        padding: 1rem 1.2rem;
    }
    
    .slide-content {
        gap: 1rem;
    }
    
    .slide-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    
    .slide-steps {
        grid-template-columns: 1fr;
    }
}

/* Animações */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.informativo-slide.ativo {
    animation: slideIn 0.5s ease-out;
}







/*ver depois */
/* Cores das loterias com gradientes */
.lfacil {
    background: linear-gradient(135deg, #81508B, #9B5BB8);
    color: white;
}

.msena {
    background: linear-gradient(135deg, #00A74D, #00C853);
    color: white;
}

.dsena {
    background: linear-gradient(135deg, #A61B20, #D32F2F);
    color: white;
}

.quina {
    background: linear-gradient(135deg, #173760, #1E88E5);
    color: white;
}
/*ver depois */

/*  INICIO area dos resutaldos individuais*/

/* Container principal do card */
.resultado-geral {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

/* Topo com nome da loteria e setas */
.resultado-topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.resultado-topo-meio {
    /* color: #6f4f1f; cor personalizável */
    color: #fff; /* cor personalizável */
    font-size: 2.4rem;
}
.resultado-topo-left i,
.resultado-topo-right i {
    cursor: pointer;
    color:  #eee;
    font-size: 3.4rem;
    border-radius: 50%;
    margin: 5px;
    display: flex;
    align-items: center;
}

/* Número do concurso e data */
.resultado-conc-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #555;
}
.resultado-concurso {
    font-weight: bold;
}
.data-concurso {
    color: #888;
}

/* Área das dezenas */
.resultado-dezenas {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.resultado-dezenas span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Para Dupla Sena, título dos sorteios */
.segundo-sorteio {
    font-weight: bold;
    margin: 15px 0 10px;
    font-size: 1rem;
    color: #6f4f1f;
    text-align: center;
}

/* Tabela de premiação */
.resultado-acertos {
    display: flex;
    background: #f9f9f9;
    border-radius: 12px;
    margin: 20px 0;
    overflow-x: auto;
}
.resultado-pontuacoes,
.resultado-premiacoes,
.resultado-ganhadores {
    flex: 1;
    text-align: center;
    padding: 10px 0;
}
.resultado-pontuacoes span,
.resultado-premiacoes span,
.resultado-ganhadores span {
    display: block;
    padding: 8px;
    border-bottom: 1px solid #ddd;
}
.resultado-pontuacoes span:first-child,
.resultado-premiacoes span:first-child,
.resultado-ganhadores span:first-child {
    background-color: #e0e0e0;
    font-weight: bold;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.resultado-premiacoes span:first-child,
.resultado-ganhadores span:first-child {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

/* Acumulado */
.resultado-acumulou {
    text-align: center;
    font-weight: bold;
    background: #ffebcc;
    color: #b45f06;
    padding: 8px;
    border-radius: 20px;
    margin: 10px 0;
}

/* Próximo sorteio */
.resultado-prox-sorteio {
    background: #f1f1f1;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 15px;
}
.resultado-prox-sorteio span {
    display: block;
}
.resultado-prox-sorteio span:first-child {
    margin-bottom: 5px;
}

/* teste resulados rapidos*/
/* Badge de acumulado compacto */
/* ===== RESULTADOS RÁPIDOS - VERSÃO COMPACTA PROFISSIONAL ===== */
.resultados-rapidos-section {
    padding: 0.8rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.resultados-header {
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.section-title i {
    color: #00d9ff;
    font-size: 1rem;
}

/* Lista horizontal (scroll) */
.resultados-lista {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.2rem 0.2rem 0.5rem;
    margin-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.resultados-lista::-webkit-scrollbar {
    height: 4px;
}

.resultados-lista::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.resultados-lista::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* Cards compactos */
.resultado-item {
    min-width: 260px;
    background: white;
    border-radius: 12px;
    padding: 0.6rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.resultado-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    border-color: #00d9ff;
}

/* Cabeçalho inline (nome, concurso, data, acumulado) */
.loteria-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}

.loteria-nome {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.2px;
}

.loteria-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: #64748b;
    flex-wrap: wrap;
}

.concurso, .data {
    font-weight: 500;
}

/* Badge acumulado compacto */
.acumulado-badge {
    background: #ff6b6b;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
    line-height: 1;
    white-space: nowrap;
}

/* Dezenas */
.dezenas {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.3rem;
    margin: 0.3rem 0 0.2rem;
}

/* Bolinhas menores */
.dezena {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    border: 1.5px solid;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Cores das bolinhas por loteria */
.mega-sena .dezena { 
    border-color: #209869;
    color: #209869;
    background: rgba(32, 152, 105, 0.08);
}
.lotofacil .dezena { 
    border-color: #930089;
    color: #930089;
    background: rgba(147, 0, 137, 0.08);
}
.quina .dezena { 
    border-color: #260085;
    color: #260085;
    background: rgba(38, 0, 133, 0.08);
}
.duplasena .dezena { 
    border-color: #ff6600;
    color: #ff6600;
    background: rgba(255, 102, 0, 0.08);
}

/* Rótulo dos sorteios (Dupla Sena) */
.sorteio-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #475569;
    margin: 0.2rem 0 0.1rem;
    display: inline-block;
    background: #f1f5f9;
    padding: 0 6px;
    border-radius: 12px;
    line-height: 1.4;
}

/* Links rápidos (parte inferior) */
.loterias-rapidas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.loteria-rapida {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.2rem 0.2rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #475569;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

.loteria-rapida:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    border-color: #00d9ff;
}

.loteria-rapida i {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.loteria-rapida span {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
}

/* Cores dos ícones rápidos */
.loteria-rapida:nth-child(1) i { color: #209869; }
.loteria-rapida:nth-child(2) i { color: #930089; }
.loteria-rapida:nth-child(3) i { color: #260085; }
.loteria-rapida:nth-child(4) i { color: #ff6600; }

/* Responsividade */
@media (max-width: 768px) {
    .resultado-item {
        min-width: 85vw;
    }
    .loterias-rapidas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .resultados-rapidos-section {
        padding: 0.6rem 0.8rem;
    }
    .dezena {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }
    .loteria-nome {
        font-size: 0.9rem;
    }
}
/* teste resulados rapidos*/
/*INICIO SETAS*/


/*FIM SETAS*/

/*  FIM area dos resutaldos individuais*/




/*INICIO PAGINA MEU EXTRATO*/
/* Container principal */
.extrato-container {
  max-width: 700px;
  margin: 20px auto;
  padding: 0 16px;
}

/* Card do saldo total (destaque) */
.card-saldo-total {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  border-radius: 28px;
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.saldo-label {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.8;
  text-transform: uppercase;
}

.saldo-valor {
  font-size: 42px;
  font-weight: bold;
  margin: 12px 0 6px;
  font-family: 'Courier New', monospace;
}

.saldo-atualizado {
  font-size: 12px;
  opacity: 0.7;
}

/* Grid dos cards de movimentação */
.movimentacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

/* Card padrão */
.card-movimento {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 5px solid;
}

.card-movimento:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Ícone */
.mov-icon {
  font-size: 32px;
  background: #f0f2f5;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}

/* Informações */
.mov-info {
  flex: 1;
}

.mov-label {
  display: block;
  font-size: 14px;
  color: #5a6874;
  margin-bottom: 4px;
}

.mov-valor {
  font-size: 22px;
  font-weight: 600;
  font-family: monospace;
}

/* Cores por tipo */
.card-movimento.positivo {
  border-left-color: #2ecc71;
}
.card-movimento.positivo .mov-valor {
  color: #2ecc71;
}

.card-movimento.negativo {
  border-left-color: #e74c3c;
}
.card-movimento.negativo .mov-valor {
  color: #e74c3c;
}

.card-movimento.pendente {
  border-left-color: #f39c12;
}
.card-movimento.pendente .mov-valor {
  color: #f39c12;
}

.card-movimento.analise {
  border-left-color: #3498db;
}
.card-movimento.analise .mov-valor {
  color: #3498db;
}

.card-movimento.negado {
  border-left-color: #95a5a6;
}
.card-movimento.negado .mov-valor {
  color: #95a5a6;
}

/* Legenda */
.legenda-extrato {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 16px;
}

.legenda-extrato p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legenda-positivo { color: #2ecc71; font-size: 16px; }
.legenda-negativo { color: #e74c3c; font-size: 16px; }
.legenda-pendente { color: #f39c12; font-size: 16px; }

/* Responsivo */
@media (max-width: 600px) {
  .movimentacoes-grid {
    grid-template-columns: 1fr;
  }
  .saldo-valor {
    font-size: 32px;
  }
}
/*FIM PAGINA MEU EXTRATO*/



/* paggina jogo2*/
/* ===== PÁGINA DO BOLÃO ===== */
/* ===== PÁGINA DO BOLÃO ===== */
.interface {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho do Bolão - CORRIGIDO SEM CONFLITOS */
.bolao-header {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 28px;
    color: white !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.bolao-titulo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.loteria-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
}

.loteria-badge.megasena { 
    background: #facc15; 
    color: #1e293b !important; 
}
.loteria-badge.dsena { 
    background: #38bdf8; 
    color: #0c4a6e !important; 
}
.loteria-badge.lotofacil { 
    background: #4ade80; 
    color: #14532d !important; 
}
.loteria-badge.quina { 
    background: #f59e0b; 
    color: #78350f !important; 
}

.bolao-codigo {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    color: white !important;
    letter-spacing: 0.5px;
}

/* INFO RÁPIDA - COR DO TEXTO GARANTIDA */
.bolao-info-rapida {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Classe específica para itens do cabeçalho do bolão (evita conflito) */
.bolao-header .info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.bolao-header .info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
}

.bolao-header .info-valor {
    font-weight: 800;
    font-size: 1.2rem;
    color: white !important;
    line-height: 1.3;
}
.bolao-header .info-label-conc {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000 !important;
    font-weight: 500;
}

.bolao-header .info-valor-conc {
    font-weight: 800;
    font-size: 1.2rem;
    color: #000 !important;
    line-height: 1.3;
}

/* Grid dos cards */
.bolao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.card-dados {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.2s;
}

.card-dados:hover {
    transform: translateY(-4px);
}

.card-header {
    background: #f8fafc;
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.card-header h5 {
    margin: 0;
    font-weight: 600;
    color: #0f172a;
}

.card-body {
    padding: 20px;
}

.detalhe-linha {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.detalhe-label {
    color: #475569;
}

.detalhe-valor {
    font-weight: 500;
    color: #1e293b;
}

.detalhe-linha.destaque .detalhe-valor {
    color: #16a34a;
    font-weight: 700;
    font-size: 1.2rem;
}

/* melhoria */
.badge-participa {
    background: #10b981;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.badge-participa i {
    font-size: 10px;
}

/* Seção de jogos */
.jogos-section {
    background: white;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.section-header h5 {
    margin: 0;
    font-weight: 600;
}

.jogos-count {
    background: #e2e8f0;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
}

/* Tabela responsiva */
.tabela-wrapper {
    overflow-x: auto;
}

.tabela-jogos {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.tabela-jogos th {
    text-align: left;
    padding: 12px 8px;
    background: #f1f5f9;
    color: #1e293b;
    font-weight: 600;
}

.tabela-jogos td {
    padding: 14px 8px;
    border-bottom: 1px solid #eef2ff;
    vertical-align: middle;
}

.numeros-container {
    font-family: monospace;
    font-weight: 500;
    background: #f8fafc;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Pontuação Dupla Sena */
.pontuacao-dupla {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 40px;
}

.pontuacao-badge {
    background: white;
    padding: 2px 10px;
    border-radius: 30px;
    font-weight: 700;
    min-width: 32px;
    text-align: center;
}

.separador {
    color: #94a3b8;
}

.pontuacao-unica {
    background: #e6f0ff;
    padding: 4px 14px;
    border-radius: 30px;
    font-weight: 600;
}

.tooltip {
    cursor: help;
    font-size: 0.7rem;
    color: #6c757d;
}

.empty-row {
    text-align: center;
    color: #94a3b8;
    padding: 40px;
}

/* Bolhas das dezenas */
.numeros-jogo {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.dezena {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.85rem;
    color: #1e293b;
    transition: all 0.2s;
}

.dezena-acertada {
    background: #22c55e;
    color: white;
    box-shadow: 0 2px 8px rgba(34,197,94,0.3);
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVO - CORRIGIDO (sem conflito)
   ============================================ */
@media (max-width: 768px) {
    .bolao-header {
        padding: 18px;
    }
    
    .bolao-titulo {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .bolao-info-rapida {
        flex-direction: column;
        gap: 0;
    }
    
    .bolao-header .info-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        gap: 0;
    }
    
    .bolao-header .info-item:last-child {
        border-bottom: none;
    }
    
    .bolao-header .info-label {
        font-size: 0.75rem;
        text-transform: none;
        letter-spacing: normal;
        margin-bottom: 0;
    }
    
    .bolao-header .info-valor {
        font-size: 1rem;
        text-align: right;
    }
    
    .tabela-jogos thead {
        display: none;
    }
    
    .tabela-jogos tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        padding: 12px;
        background: white;
    }
    
    .tabela-jogos td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border: none;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .tabela-jogos td:last-child {
        border-bottom: none;
    }
    
    .tabela-jogos td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #334155;
        width: 90px;
        flex-shrink: 0;
    }
    
    .numeros-container {
        background: transparent;
        padding: 0;
    }
    
    .numeros-jogo {
        justify-content: flex-end;
    }
}

/* Computador/Desktop - itens lado a lado */
@media (min-width: 769px) {
    .bolao-info-rapida {
        flex-direction: row;
    }
    
    .bolao-header .info-item {
        text-align: center;
    }
}
/* paggina jogo2*/

/* css do instagran carrossel*/
/* Slide Instagram - Adicionar no seu CSS */
.slide-instagram .slide-icon {
    background: linear-gradient(135deg, #f09433 0%, #d62976 50%, #962fbf 100%);
}

.slide-instagram .slide-action {
    background: linear-gradient(135deg, #f09433 0%, #d62976 50%, #962fbf 100%);
}



/* ============================================
   BOTÃO DO INSTAGRAM - GARANTIA DE VISIBILIDADE
   ============================================ */

.slide-instagram {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}

.slide-instagram .slide-content {
    flex: 1;
}

.slide-instagram .slide-action {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #f09433 0%, #d62976 50%, #962fbf 100%) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    margin-top: 16px !important;
    margin-bottom: 8px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: fit-content !important;
    align-self: flex-start !important;
}

.slide-instagram .slide-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    filter: brightness(1.05);
}

.slide-instagram .slide-action i {
    font-size: 1.1rem;
    color: white !important;
}

.slide-instagram .slide-action i:first-child {
    font-size: 1.2rem;
}
/* css do instagran carrossel*/