/* ========================================
   BOLÃO PREMIUM - Estilo Profissional Caixa
   Design minimalista, limpo e confiável
   ======================================== */

/* Reset e base para bolão */
#step-1b.caixa-pix-screen {
    background: linear-gradient(180deg, #005a9e 0%, #0077cc 50%, #f5f7fa 50%);
}

/* Card do bolão - Premium */
#step-1b .caixa-pix-card {
    margin-top: 30px;
    border-radius: 16px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    padding-bottom: 0;
}

/* Header do título */
#step-1b .bolao-title-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 28px 24px 24px;
    border-bottom: none;
    position: relative;
}

#step-1b .bolao-title-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

#step-1b .bolao-main-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0066b3;
    margin: 0 0 6px 0;
    letter-spacing: -0.02em;
}

#step-1b .bolao-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* Lista de pacotes */
#step-1b .bolao-simple-list {
    padding: 8px 0;
    background: white;
}

/* Item do pacote - Premium */
#step-1b .bolao-item {
    margin: 0 16px 12px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    overflow: hidden;
}

#step-1b .bolao-item:hover {
    border-color: #0066b3;
    box-shadow: 0 4px 12px rgba(0, 102, 179, 0.15);
}

#step-1b .bolao-item:last-child {
    margin-bottom: 8px;
}

/* Linha principal do item */
#step-1b .bolao-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    gap: 16px;
}

/* Info esquerda */
#step-1b .bolao-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

#step-1b .bolao-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.01em;
}

#step-1b .bolao-item-cotas {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 400;
}

/* Info direita */
#step-1b .bolao-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

#step-1b .bolao-item-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0066b3;
    letter-spacing: -0.01em;
}

/* Controle de quantidade - Premium */
#step-1b .bolao-qty {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0066b3 0%, #0077cc 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 102, 179, 0.25);
}

#step-1b .bolao-qty-btn {
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.4rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#step-1b .bolao-qty-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

#step-1b .bolao-qty-btn:active {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0.95);
}

#step-1b .bolao-qty-num {
    min-width: 40px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    background: rgba(0, 0, 0, 0.12);
    height: 38px;
    line-height: 38px;
}

/* Ver Números button - Premium */
#step-1b .bolao-ver-numeros {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px;
    background: #f8fafc;
    border: none;
    border-top: 1px solid #f1f5f9;
    color: #0066b3;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

#step-1b .bolao-ver-numeros:hover {
    background: #e0f2fe;
    color: #0284c7;
}

/* Lista de números - Premium */
#step-1b .bolao-numeros-lista {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 16px;
    border-top: 1px solid #bae6fd;
}

#step-1b .bolao-jogo {
    font-family: 'JetBrains Mono', 'SF Mono', 'Roboto Mono', monospace;
    font-size: 0.75rem;
    color: #0369a1;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 6px;
    border: 1px solid #e0f2fe;
    line-height: 1.5;
}

#step-1b .bolao-jogo:last-child {
    margin-bottom: 0;
}

#step-1b .jogo-label {
    font-weight: 700;
    color: #0066b3;
    margin-right: 8px;
    display: inline-block;
    min-width: 58px;
}

/* Footer - Premium */
#step-1b .bolao-footer-simple {
    padding: 20px 20px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
}

#step-1b .bolao-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

#step-1b .bolao-total-row span:first-child {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #475569;
}

#step-1b .bolao-total-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0066b3;
    letter-spacing: -0.02em;
}

/* Botão Continuar - Premium */
#step-1b .bolao-btn-continuar {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    letter-spacing: -0.01em;
}

#step-1b .bolao-btn-continuar:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

#step-1b .bolao-btn-continuar:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

/* Botão Voltar - Premium */
#step-1b .bolao-btn-voltar {
    width: 100%;
    padding: 16px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

#step-1b .bolao-btn-voltar:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #475569;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    #step-1b .bolao-item {
        margin: 0 12px 10px;
        border-radius: 10px;
    }

    #step-1b .bolao-item-row {
        padding: 14px 14px;
        gap: 12px;
    }

    #step-1b .bolao-item-title {
        font-size: 0.9rem;
    }

    #step-1b .bolao-item-price {
        font-size: 1rem;
    }

    #step-1b .bolao-qty-btn {
        width: 34px;
        height: 34px;
    }

    #step-1b .bolao-qty-num {
        min-width: 36px;
        height: 34px;
        line-height: 34px;
    }

    #step-1b .bolao-title-section {
        padding: 24px 16px 20px;
    }

    #step-1b .bolao-main-title {
        font-size: 1.2rem;
    }

    #step-1b .bolao-footer-simple {
        padding: 16px 16px 20px;
    }

    #step-1b .bolao-total-value {
        font-size: 1.3rem;
    }

    #step-1b .bolao-btn-continuar {
        padding: 16px;
        font-size: 1rem;
    }
}