/* --- ESTILOS ELITE: TESORERÍA MUNICIPAL --- */

.tesoreria-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border-bottom: 4px solid var(--dorado);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-item h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
}

.stat-item .value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--vino);
}

/* Tarjetas de Recaudación */
.pago-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pago-card:hover {
    border-color: var(--vino);
    box-shadow: 0 15px 30px rgba(97, 18, 50, 0.1);
    transform: translateY(-5px);
}

.pago-icon {
    width: 60px;
    height: 60px;
    background: var(--gris-fondo);
    color: var(--vino);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Tabla de Rendición de Cuentas */
.finanzas-table-container {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.btn-file-download {
    color: var(--vino) !important;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 8px;
    transition: 0.2s;
}

.btn-file-download:hover {
    background: var(--gris-fondo);
}