/* ==========================================================================
   PAGAMENTOS.HTML - Gestão Financeira e Doações
   ========================================================================== */

/* --- CABEÇALHO DA PÁGINA (Page Header) --- */
.page-header {
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 34, 68, 0.95)), url('../img/page-header.jpg') center center no-repeat;
    background-size: cover;
    background-color: #003366; 
    padding: 40px 0 !important; 
    margin-bottom: 30px !important; 
    border-bottom: 4px solid #ffcc00; 
}

/* Mantido em Branco para contraste absoluto no fundo escuro */
.page-header h1, 
.page-header h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
}

.page-header a {
    color: rgba(255, 255, 255, 0.75) !important;
    transition: color 0.2s ease;
}

.page-header a:hover {
    color: #ffffff !important;
    text-decoration: none;
}


/* --- ALTERAÇÃO: TÍTULOS DO CORPO DA PÁGINA --- */
/* Força todos os títulos principais e secundários do conteúdo a mudarem de azul para grafite escuro */
main h2, 
main h4, 
main h5,
.text-primary {
    color: #1e293b !important; /* Cor cinza-grafite moderna e profissional */
}

/* Ajuste específico para as cores das marcas das carteiras móveis (mantendo a identidade delas) */
.card h5 {
    font-weight: bold;
    margin-bottom: 15px;
}


/* --- CARTÕES COM DADOS BANCÁRIOS / MÉTODOS DE DEPÓSITO --- */
.card {
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-3px); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.card img {
    transition: transform 0.2s ease;
}

.card:hover img {
    transform: scale(1.05); 
}

/* Estilização das listas de dados bancários */
.text-left p {
    font-size: 0.95rem;
    color: #334155;
    padding: 6px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.text-left p:last-child {
    border-bottom: none; 
}

.text-left strong {
    color: #0f172a;
    display: inline-block;
    width: 65px; 
}


/* --- BOTÃO FLUTUANTE "VOLTAR AO TOPO" --- */
#backToTop {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #003366 !important;
    border: none;
    transition: all 0.3s ease;
}

#backToTop:hover {
    background-color: #002244 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


/* --- ÁREA DE UPLOAD DO RECIBO --- */
.receipt-upload-box {
    background-color: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.receipt-upload-box:hover {
    border-color: #22c55e; 
    background-color: #f0fdf4;
}

.receipt-upload-box i {
    font-size: 2.2rem;
    color: #94a3b8;
    margin-bottom: 12px;
}